@charset "UTF-8";
/*
 * Ce fichier est automatiquement compilé par Sass
 * Ne pas utiliser l'extension .css pour les imports
 */
/* line 5, app/assets/stylesheets/_base.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 11, app/assets/stylesheets/_base.scss */
html, body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #202f66;
  background-color: #eeedec;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* line 23, app/assets/stylesheets/_base.scss */
body {
  color: #202f66;
  transition: background-color 1.5s ease, color 1.5s ease;
}

/* line 27, app/assets/stylesheets/_base.scss */
body.no-scroll {
  overflow: hidden;
}

/* line 32, app/assets/stylesheets/_base.scss */
a {
  text-decoration: none;
  color: #2b3f8a;
  transition: 0.2s ease;
}

/* line 37, app/assets/stylesheets/_base.scss */
a:hover {
  color: #1f2d63;
}

/* line 42, app/assets/stylesheets/_base.scss */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* line 48, app/assets/stylesheets/_base.scss */
h1 {
  font-size: 2.5rem;
}

/* line 52, app/assets/stylesheets/_base.scss */
h2 {
  font-size: 2rem;
}

/* line 56, app/assets/stylesheets/_base.scss */
h3 {
  font-size: 1.75rem;
}

/* line 60, app/assets/stylesheets/_base.scss */
h4 {
  font-size: 1.5rem;
}

/* line 64, app/assets/stylesheets/_base.scss */
h5 {
  font-size: 1.25rem;
}

/* line 68, app/assets/stylesheets/_base.scss */
h6 {
  font-size: 1rem;
}

/* line 72, app/assets/stylesheets/_base.scss */
p {
  margin-bottom: 1rem;
}

/* line 76, app/assets/stylesheets/_base.scss */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* line 83, app/assets/stylesheets/_base.scss */
.section {
  padding: 3rem 0;
}

/* line 87, app/assets/stylesheets/_base.scss */
.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2b3f8a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  text-align: center;
}

/* line 99, app/assets/stylesheets/_base.scss */
.btn:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 105, app/assets/stylesheets/_base.scss */
.btn:active {
  transform: translateY(0);
}

/* line 109, app/assets/stylesheets/_base.scss */
.btn.btn-primary {
  background-color: #2b3f8a;
}

/* line 113, app/assets/stylesheets/_base.scss */
.btn.btn-secondary {
  background-color: transparent;
  border: 2px solid #2b3f8a;
  color: #2b3f8a;
}

/* line 118, app/assets/stylesheets/_base.scss */
.btn.btn-secondary:hover {
  background-color: #2b3f8a;
  color: white;
}

/* line 124, app/assets/stylesheets/_base.scss */
.btn.btn-danger {
  background-color: #ea1d21;
  height: 38px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 132, app/assets/stylesheets/_base.scss */
.btn.btn-danger:hover {
  background-color: #c21215;
}

/* line 138, app/assets/stylesheets/_base.scss */
.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: 0.3s ease;
}

/* line 145, app/assets/stylesheets/_base.scss */
.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

@keyframes gridMove {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(20px, 10px, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(0, 20px, 0) rotate(0deg);
  }
  75% {
    transform: translate3d(-20px, 10px, 0) rotate(-1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes gridLineOpacity {
  0% {
    opacity: 0.25;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.35;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.25;
  }
}

@keyframes gridDepth {
  0% {
    transform: perspective(1000px) rotateX(60deg) rotateZ(0deg);
  }
  50% {
    transform: perspective(1000px) rotateX(65deg) rotateZ(1deg);
  }
  100% {
    transform: perspective(1000px) rotateX(60deg) rotateZ(0deg);
  }
}

/* line 56, app/assets/stylesheets/_grid_background.scss */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* line 67, app/assets/stylesheets/_grid_background.scss */
.grid-background__container {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  animation: gridMove 30s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* line 78, app/assets/stylesheets/_grid_background.scss */
.grid-background__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  animation: gridDepth 20s ease-in-out infinite;
  transform-origin: center center;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(60deg) rotateZ(0deg);
}

/* line 92, app/assets/stylesheets/_grid_background.scss */
.grid-background__horizontal-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(180, 220, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* line 104, app/assets/stylesheets/_grid_background.scss */
.grid-background__horizon {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(180, 220, 255, 0.1) 10%, rgba(7, 124, 226, 0.72) 50%, rgba(180, 220, 255, 0.1) 90%, transparent 100%);
  box-shadow: 0 0 15px rgba(30, 137, 231, 0.15);
  transform: perspective(1000px) rotateX(60deg);
  z-index: 3;
}

/* line 123, app/assets/stylesheets/_grid_background.scss */
.grid-background__vertical-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(63, 154, 233, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* line 135, app/assets/stylesheets/_grid_background.scss */
.grid-background__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 40, 120, 0.15) 0%, rgba(20, 40, 120, 0.05) 50%, rgba(20, 40, 120, 0.15) 100%);
  mix-blend-mode: normal;
}

/* Animation pour attirer l'attention sur le bouton Projets */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 63, 138, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(43, 63, 138, 0.2);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 63, 138, 0);
    transform: scale(1);
  }
}

/* Animation pour l'apparition de la navbar */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation pour la disparition de la navbar */
@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* line 44, app/assets/stylesheets/_navbar.scss */
.navbar {
  position: relative;
  /* Position par défaut pour l'admin */
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  /* Styles spécifiques pour le mode admin */
  /* Animation et styles pour le mode public */
  /* Style pour l'animation du bouton Projets */
  /* Animation définie en haut du fichier */
}

/* line 52, app/assets/stylesheets/_navbar.scss */
.navbar.admin-mode {
  position: sticky;
  top: 0;
  animation: none !important;
  /* Désactive toutes les animations */
}

/* line 59, app/assets/stylesheets/_navbar.scss */
.navbar:not(.admin-mode) {
  animation: slideDown 0.5s ease-out forwards;
  /* Navbar sticky uniquement pour la partie publique */
  position: fixed;
  /* Fixed au lieu de sticky pour rester visible en permanence */
  top: 0;
  left: 0;
  width: 100%;
}

/* line 69, app/assets/stylesheets/_navbar.scss */
.navbar.navbar-hidden {
  animation: slideUp 0.5s ease-out forwards;
}

/* line 73, app/assets/stylesheets/_navbar.scss */
.navbar .container {
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 81, app/assets/stylesheets/_navbar.scss */
.navbar__logo {
  display: flex;
  align-items: center;
}

/* line 85, app/assets/stylesheets/_navbar.scss */
.navbar__logo img {
  height: 40px;
  margin-right: 0.5rem;
}

/* line 90, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #202f66;
  position: relative;
  overflow: hidden;
  min-width: 150px;
}

/* line 98, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text .text-original,
.navbar__logo .logo-text .text-hover {
  display: inline-block;
  transition: 0.3s ease;
  width: 100%;
}

/* line 105, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text .text-hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  white-space: nowrap;
}

/* line 115, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text:hover .text-original {
  opacity: 0;
  transform: translateY(-100%);
}

/* line 120, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text:hover .text-hover {
  opacity: 1;
  transform: translateY(0);
}

/* line 128, app/assets/stylesheets/_navbar.scss */
.navbar__links {
  display: flex;
  align-items: center;
  /* Variante GIF pour le lien Projets */
  /* Style pour le bouton Contact avec effet de hover */
}

/* line 133, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu {
  margin-left: 1rem;
}

/* line 136, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu .kebab-menu__button {
  background-color: transparent;
}

/* line 139, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu .kebab-menu__button .dot {
  background-color: #2b3f8a;
}

/* line 144, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu .kebab-menu__content {
  top: 120%;
  right: 0;
}

/* line 149, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu .kebab-menu__content .menu-item i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

/* line 158, app/assets/stylesheets/_navbar.scss */
.navbar__links a:not(.navbar__btn-contact):not(.js-contact-modal) {
  margin-left: 1.5rem;
  color: #202f66;
  font-weight: 500;
  position: relative;
  display: inline-block;
  /* Style commun pour tous les liens de navigation */
}

/* line 166, app/assets/stylesheets/_navbar.scss */
.navbar__links a:not(.navbar__btn-contact):not(.js-contact-modal)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  /* Position ajustée pour aligner avec Projets */
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2b3f8a;
  transition: 0.3s ease;
}

/* line 177, app/assets/stylesheets/_navbar.scss */
.navbar__links a:not(.navbar__btn-contact):not(.js-contact-modal):hover::after, .navbar__links a.active:not(.navbar__btn-contact):not(.js-contact-modal)::after {
  width: 100%;
}

/* line 184, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif {
  margin-left: 1.5rem;
  position: relative;
  display: inline-block;
  height: 52px;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  /* Décalage vertical paramétrable et compensation anti-crop */
  --gif-shift: 1px;
  /* Ajuste ici si besoin (valeur positive) */
  /* Désactiver le soulignement animé de base */
}

/* line 196, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif::after {
  content: none !important;
}

/* line 198, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif .projects-gif-img {
  height: calc(100% + (2 * var(--gif-shift)));
  width: auto;
  display: block;
  object-fit: cover;
  transform: translateY(calc(-1 * var(--gif-shift)));
}

/* line 206, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  color: #202f66;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.2px;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
  padding: 0 1rem;
  user-select: none;
}

/* line 224, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif:hover .overlay, .navbar__links a.navbar__projects-gif:focus .overlay {
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

/* line 232, app/assets/stylesheets/_navbar.scss */
.navbar__links .js-contact-modal {
  transition: all 0.3s ease;
}

/* line 235, app/assets/stylesheets/_navbar.scss */
.navbar__links .js-contact-modal:hover {
  background-color: #25325f !important;
  /* Couleur légèrement plus claire */
  transform: scale(1.05);
  /* Léger zoom */
}

/* line 242, app/assets/stylesheets/_navbar.scss */
.navbar__links__separator {
  height: 24px;
  width: 1px;
  background-color: #cbd5e1;
  margin: 0 1rem;
  align-self: center;
}

/* line 251, app/assets/stylesheets/_navbar.scss */
.navbar__links__btn-contact {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background-color: #2b3f8a;
  color: white !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none !important;
  position: static !important;
}

/* line 268, app/assets/stylesheets/_navbar.scss */
.navbar__links__btn-contact:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 274, app/assets/stylesheets/_navbar.scss */
.navbar__links__btn-contact:active {
  transform: translateY(0);
}

/* line 279, app/assets/stylesheets/_navbar.scss */
.navbar__links .btn-secondary {
  margin-left: 1.5rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 284, app/assets/stylesheets/_navbar.scss */
.navbar__links .btn-secondary:hover {
  background-color: #1f2d63;
}

/* line 289, app/assets/stylesheets/_navbar.scss */
.navbar__links .btn-outline {
  margin-left: 1.5rem;
  background-color: transparent;
  color: #202f66;
  border: 1px solid #202f66;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

/* line 298, app/assets/stylesheets/_navbar.scss */
.navbar__links .btn-outline:hover {
  background-color: #202f66;
  color: white;
}

/* line 305, app/assets/stylesheets/_navbar.scss */
.navbar__burger {
  display: none;
  /* Par défaut, le burger est caché */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  padding: 15px;
  /* Zone cliquable plus grande */
  margin: -15px;
  /* Compensation pour maintenir la taille visuelle */
  position: relative;
  /* Assurer que le z-index fonctionne */
  box-sizing: content-box;
  /* Garantir que le padding n'affecte pas la taille */
}

/* line 318, app/assets/stylesheets/_navbar.scss */
.navbar__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #202f66;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* line 329, app/assets/stylesheets/_navbar.scss */
.navbar__burger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

/* line 333, app/assets/stylesheets/_navbar.scss */
.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

/* line 337, app/assets/stylesheets/_navbar.scss */
.navbar__burger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* line 343, app/assets/stylesheets/_navbar.scss */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  flex-direction: column;
  align-items: center;
  z-index: 990;
  overflow-y: auto;
}

/* line 352, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* line 357, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab .kebab-menu__button {
  background-color: transparent;
}

/* line 360, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab .kebab-menu__button .dot {
  background-color: #2b3f8a;
}

/* line 365, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab .kebab-menu__content {
  top: 120%;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

/* line 372, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab .kebab-menu__content .menu-item i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

/* line 388, app/assets/stylesheets/_navbar.scss */
.navbar__mobile.active {
  display: flex !important;
}

/* line 392, app/assets/stylesheets/_navbar.scss */
.navbar__mobile a:not(.navbar__btn-contact) {
  margin: 1rem 0;
  color: #202f66;
  font-weight: 500;
}

/* line 397, app/assets/stylesheets/_navbar.scss */
.navbar__mobile a.active:not(.navbar__btn-contact) {
  color: #2b3f8a;
}

/* line 402, app/assets/stylesheets/_navbar.scss */
.navbar__mobile__btn-contact {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background-color: #2b3f8a;
  color: white !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none !important;
  position: static !important;
}

/* line 419, app/assets/stylesheets/_navbar.scss */
.navbar__mobile__btn-contact:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 425, app/assets/stylesheets/_navbar.scss */
.navbar__mobile__btn-contact:active {
  transform: translateY(0);
}

/* line 430, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .btn-secondary {
  margin-top: 1rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 435, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .btn-secondary:hover {
  background-color: #1f2d63;
}

/* line 440, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .btn-outline {
  margin-top: 1rem;
  background-color: transparent;
  color: #202f66;
  border: 1px solid #202f66;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

/* line 449, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .btn-outline:hover {
  background-color: #202f66;
  color: white;
}

/* line 455, app/assets/stylesheets/_navbar.scss */
.navbar__mobile form {
  margin-top: 1rem;
}

/* line 461, app/assets/stylesheets/_navbar.scss */
.navbar a.js-projects-link.animate-attention {
  position: relative;
  animation: pulseGlow 2s infinite ease-in-out;
  font-weight: 600;
  color: #2b3f8a;
}

/* line 467, app/assets/stylesheets/_navbar.scss */
.navbar a.js-projects-link.animate-attention:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ea1d21;
  transform: scaleX(0);
  animation: slideInLine 1s forwards, expandLine 1.5s 1s infinite alternate;
}

@keyframes slideInLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes expandLine {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  /* line 494, app/assets/stylesheets/_navbar.scss */
  .navbar:not(.admin-mode) .navbar__links {
    display: none;
  }
  /* line 498, app/assets/stylesheets/_navbar.scss */
  .navbar:not(.admin-mode) .navbar__burger {
    display: flex;
  }
}

@media (max-width: 1009px) {
  /* line 507, app/assets/stylesheets/_navbar.scss */
  .navbar.admin-mode .navbar__links {
    display: flex;
  }
  /* line 510, app/assets/stylesheets/_navbar.scss */
  .navbar.admin-mode .navbar__links a:not(.navbar__btn-contact) {
    display: none;
  }
  /* line 515, app/assets/stylesheets/_navbar.scss */
  .navbar.admin-mode .navbar__links .kebab-menu {
    display: block;
    margin-left: 0;
  }
}

/* line 524, app/assets/stylesheets/_navbar.scss */
.burger-visible span {
  background-color: #2b3f8a !important;
  height: 4px !important;
}

/* line 4, app/assets/stylesheets/_navbar_projects.scss */
.navbar {
  transition: all 0.5s ease;
}

/* line 9, app/assets/stylesheets/_navbar_projects.scss */
.navbar .navbar__links {
  /* Aucun style spécifique pour le lien Projets pour assurer la cohérence avec les autres liens */
}

/* line 12, app/assets/stylesheets/_navbar_projects.scss */
.navbar .navbar__links a.js-contact-modal {
  margin-left: 1.5rem;
}

/* line 18, app/assets/stylesheets/_navbar_projects.scss */
.navbar .navbar__logo img {
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

/* line 24, app/assets/stylesheets/_navbar_projects.scss */
.navbar .navbar__separator {
  height: 24px;
}

/* line 3, app/assets/stylesheets/_project_menu.scss */
.project-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem;
  background: #1f1f1f;
  border-radius: 1rem;
  color: #fff;
  width: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  animation: fadeIn 0.5s ease-out;
}

/* line 20, app/assets/stylesheets/_project_menu.scss */
.back-button {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  width: 2.2rem;
  height: 2.2rem;
}

/* line 39, app/assets/stylesheets/_project_menu.scss */
.back-button:hover {
  transform: translateX(-4px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* line 46, app/assets/stylesheets/_project_menu.scss */
.drag-handle {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: grab;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 63, app/assets/stylesheets/_project_menu.scss */
.drag-handle:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* line 69, app/assets/stylesheets/_project_menu.scss */
.drag-handle:active {
  cursor: grabbing;
}

/* line 73, app/assets/stylesheets/_project_menu.scss */
.drag-icon {
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) invert(1);
  /* Rendre l'icône blanche */
  opacity: 0.8;
}

/* line 80, app/assets/stylesheets/_project_menu.scss */
.drag-handle:hover .drag-icon {
  opacity: 1;
}

/* Styles pour le menu en cours de déplacement */
/* line 85, app/assets/stylesheets/_project_menu.scss */
.project-menu.dragging {
  transition: none;
  user-select: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

/* line 91, app/assets/stylesheets/_project_menu.scss */
.menu-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* line 99, app/assets/stylesheets/_project_menu.scss */
.project-types {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  height: 40px;
  /* Hauteur fixe pour stabiliser le conteneur */
}

/* line 106, app/assets/stylesheets/_project_menu.scss */
.project-btn {
  padding: 0.6rem 1.2rem;
  background: rgba(51, 51, 51, 0.5);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  min-width: 130px;
  width: 160px;
  /* Largeur fixe pour tous les boutons */
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 36px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Utiliser font-weight normal pour tous les états */
  font-weight: normal;
}

/* line 129, app/assets/stylesheets/_project_menu.scss */
.project-btn:hover {
  background: #555;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* line 134, app/assets/stylesheets/_project_menu.scss */
.project-btn.active {
  background: rgba(51, 51, 51, 0.8);
  border: none;
  /* Ne pas changer le font-weight pour éviter le mouvement */
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7), 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Styles pour les transitions des cartes de projet */
/* line 142, app/assets/stylesheets/_project_menu.scss */
.project-card {
  transition: opacity 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animation pour l'apparition du menu */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 4, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar {
  display: none;
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: none;
  background-color: transparent;
  transition: background-color 180ms ease;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 17, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
  transition: background-color 180ms ease;
}

@media (max-width: 370px) {
  /* line 17, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__container {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: space-between;
  }
}

/* line 32, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__back-button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 45, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__back-button:hover, .project-mobile-navbar__back-button:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 50, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__back-button:active {
  transform: scale(0.95);
}

@media (min-width: 769px) {
  /* line 32, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__back-button {
    display: none;
  }
}

@media (max-width: 370px) {
  /* line 32, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__back-button {
    margin-right: 1rem;
    margin-left: 0;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 1.5rem;
    border-width: 2px;
  }
}

/* line 68, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 370px) {
  /* line 68, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__buttons {
    display: block;
  }
  /* line 76, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__buttons .project-btn:nth-child(1) {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  /* line 83, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar__buttons .project-btn:nth-child(2) {
    margin-top: 0.8rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}

/* line 92, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__buttons .project-btn {
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  min-width: auto;
  width: auto;
  height: auto;
  white-space: nowrap;
  background-color: rgba(143, 143, 143, 0.5);
}

/* line 101, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__buttons .project-btn.active {
  background: #ea1d21;
  box-shadow: 0 0 8px #ea1d21;
}

/* line 110, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar.is-scrolled .project-mobile-navbar__container {
  background: none !important;
  background-color: transparent !important;
}

@media (max-width: 768px) {
  /* line 120, app/assets/stylesheets/_project_mobile_navbar.scss */
  #projects-section.section {
    justify-content: flex-start !important;
    padding-top: 0 !important;
  }
  /* line 125, app/assets/stylesheets/_project_mobile_navbar.scss */
  #projects-section .container {
    margin-top: 56px !important;
  }
  /* line 127, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-menu {
    display: none !important;
  }
  /* line 131, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-mobile-navbar {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 56px !important;
  }
}

/* line 4, app/assets/stylesheets/_footer.scss */
.footer {
  background-color: #202f66;
  color: #eeedec;
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1005;
}

/* line 12, app/assets/stylesheets/_footer.scss */
.footer .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* line 18, app/assets/stylesheets/_footer.scss */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}

/* line 26, app/assets/stylesheets/_footer.scss */
.footer__logo {
  display: flex;
  align-items: center;
}

/* line 30, app/assets/stylesheets/_footer.scss */
.footer__logo img {
  height: 30px;
  margin-right: 0.5rem;
  filter: brightness(0) invert(1);
}

/* line 36, app/assets/stylesheets/_footer.scss */
.footer__logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

/* line 43, app/assets/stylesheets/_footer.scss */
.footer__links {
  display: flex;
}

/* line 46, app/assets/stylesheets/_footer.scss */
.footer__links a {
  margin-left: 1.5rem;
  color: white;
  opacity: 0.8;
  transition: 0.2s ease;
}

/* line 52, app/assets/stylesheets/_footer.scss */
.footer__links a:hover {
  opacity: 1;
}

/* line 58, app/assets/stylesheets/_footer.scss */
.footer__social {
  display: flex;
}

/* line 61, app/assets/stylesheets/_footer.scss */
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 1rem;
  transition: 0.3s ease;
}

/* line 73, app/assets/stylesheets/_footer.scss */
.footer__social a:hover {
  background-color: #2b3f8a;
  transform: translateY(-3px);
}

/* line 80, app/assets/stylesheets/_footer.scss */
.footer__copyright {
  width: 100%;
  text-align: center;
  padding-top: 0.5rem;
  border-top: none;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Thème clair pour la section Projets */
/* line 92, app/assets/stylesheets/_footer.scss */
.footer.footer--light {
  background-color: #eeedec;
  color: #1f1f1f;
}

/* line 97, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__logo img {
  filter: none;
}

/* line 100, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__logo span {
  color: #1f1f1f;
}

/* line 106, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__links a {
  color: #1f1f1f;
  opacity: 0.9;
}

/* line 109, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__links a:hover {
  opacity: 1;
}

/* line 114, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__social a {
  background-color: rgba(31, 31, 31, 0.08);
  color: #1f1f1f;
}

/* line 117, app/assets/stylesheets/_footer.scss */
.footer.footer--light .footer__social a:hover {
  background-color: rgba(31, 31, 31, 0.15);
  transform: translateY(-3px);
}

/* line 124, app/assets/stylesheets/_footer.scss */
.footer.footer--light__copyright {
  opacity: 0.8;
}

@media (max-width: 768px) {
  /* line 131, app/assets/stylesheets/_footer.scss */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  /* line 136, app/assets/stylesheets/_footer.scss */
  .footer__logo {
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  /* line 141, app/assets/stylesheets/_footer.scss */
  .footer__links {
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  /* line 145, app/assets/stylesheets/_footer.scss */
  .footer__links a {
    margin: 0 1rem;
  }
  /* line 150, app/assets/stylesheets/_footer.scss */
  .footer__social {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
}

@keyframes wordDance {
  0% {
    transform: translateZ(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateZ(10px) rotate(3deg) scale(1.1);
  }
  50% {
    transform: translateZ(15px) rotate(-2deg) scale(1.15);
  }
  75% {
    transform: translateZ(10px) rotate(1deg) scale(1.1);
  }
  100% {
    transform: translateZ(5px) rotate(0deg) scale(1.05);
  }
}

/* line 23, app/assets/stylesheets/_home.scss */
.section-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #2b3f8a;
  padding: 0;
  padding-top: 150px !important;
}

/* line 31, app/assets/stylesheets/_home.scss */
.section-home__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  /* line 31, app/assets/stylesheets/_home.scss */
  .section-home__content {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* line 43, app/assets/stylesheets/_home.scss */
.section-home__text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
  perspective: 1000px;
  transform-style: preserve-3d;
}

@media (max-width: 992px) {
  /* line 43, app/assets/stylesheets/_home.scss */
  .section-home__text {
    padding-right: 0;
    margin-top: 2rem;
  }
}

/* line 55, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  background-color: transparent;
}

/* line 63, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container.setup-done {
  transition: transform 0.2s ease-out;
}

/* line 70, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title {
  transform: translateZ(25px) rotateX(2deg) rotateY(3deg);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

/* line 74, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span {
  margin-right: 15px;
}

/* line 77, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span:last-child {
  margin-right: 0;
}

/* line 83, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span,
.section-home__text .animated-container:hover .animated-text span {
  display: inline-block;
  animation: wordDance 0.8s ease-in-out forwards;
}

/* line 90, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span:nth-child(1) {
  animation-delay: 0.05s;
  transform-origin: top left;
  transform: translateZ(30px) rotate(-3deg) scale(1.1);
}

/* line 96, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span:nth-child(2) {
  animation-delay: 0.12s;
  transform-origin: top center;
  transform: translateZ(25px) rotate(2deg) scale(1.08);
}

/* line 102, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span:nth-child(3) {
  animation-delay: 0.18s;
  transform-origin: center;
  transform: translateZ(35px) rotate(-1deg) scale(1.12);
}

/* line 108, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-title span:nth-child(4) {
  animation-delay: 0.24s;
  transform-origin: bottom right;
  transform: translateZ(28px) rotate(4deg) scale(1.1);
}

/* line 115, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-text span {
  margin-right: 10px;
}

/* line 119, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-text span:nth-child(15), .section-home__text .animated-container:hover .animated-text span:nth-child(21), .section-home__text .animated-container:hover .animated-text span:nth-child(25) {
  margin-right: 15px;
}

/* line 125, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-text span:nth-child(2n) {
  animation-delay: 0.1s;
  transform-origin: bottom left;
}

/* line 130, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-text span:nth-child(3n) {
  animation-delay: 0.2s;
  transform-origin: top right;
}

/* line 135, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-text span:nth-child(5n) {
  animation-delay: 0.15s;
  transform-origin: center;
}

/* line 141, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-buttons {
  transform: translateZ(20px);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* line 148, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-buttons .btn:first-child {
  transform: translateZ(15px) rotate(-8deg) scale(1.1);
}

/* line 152, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container:hover .animated-buttons .btn:last-child {
  transform: translateZ(12px) rotate(8deg) scale(1.12) translateX(15px);
}

/* line 160, app/assets/stylesheets/_home.scss */
.section-home__text .animated-title {
  color: #eeedec;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 171, app/assets/stylesheets/_home.scss */
.section-home__text .animated-title span {
  display: inline-block;
  margin-right: 5px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

/* line 177, app/assets/stylesheets/_home.scss */
.section-home__text .animated-title span:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  /* line 160, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  /* line 160, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 2rem;
  }
}

/* line 191, app/assets/stylesheets/_home.scss */
.section-home__text .bracket {
  position: absolute;
  border: 18px solid #ea1d21;
  transition: all 0.5s ease;
  z-index: 1;
  transform-style: preserve-3d;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* line 200, app/assets/stylesheets/_home.scss */
.section-home__text .bracket.invisible {
  opacity: 0;
  border-color: #00ff00;
  filter: none;
  pointer-events: none;
}

/* line 207, app/assets/stylesheets/_home.scss */
.section-home__text .bracket-top-left {
  top: -45px;
  left: -50px;
  width: 70px;
  height: 90px;
  border-right: none;
  border-bottom: none;
  transform-origin: top left;
  transform: rotate(0deg);
}

/* line 218, app/assets/stylesheets/_home.scss */
.section-home__text .bracket-top-right {
  top: -45px;
  right: -50px;
  width: 70px;
  height: 90px;
  border-left: none;
  border-bottom: none;
  transform-origin: top right;
  transform: rotate(0deg);
}

/* line 229, app/assets/stylesheets/_home.scss */
.section-home__text .bracket-bottom-left {
  bottom: -25px;
  left: -50px;
  width: 90px;
  height: 70px;
  border-right: none;
  border-top: none;
  transform-origin: bottom left;
  transform: rotate(0deg);
}

/* line 240, app/assets/stylesheets/_home.scss */
.section-home__text .bracket-bottom-right {
  bottom: -25px;
  right: -20px;
  width: 90px;
  height: 70px;
  border-left: none;
  border-top: none;
  transform-origin: bottom right;
  transform: rotate(0deg);
}

/* line 252, app/assets/stylesheets/_home.scss */
.section-home__text .animated-text {
  color: #eeedec;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* line 263, app/assets/stylesheets/_home.scss */
.section-home__text .animated-text span {
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 4px;
}

@media (max-width: 992px) {
  /* line 252, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  /* line 252, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 1.1rem;
  }
}

/* line 280, app/assets/stylesheets/_home.scss */
.section-home__image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: calc(100vh - 200px);
  max-height: 650px;
  overflow: hidden;
}

/* line 291, app/assets/stylesheets/_home.scss */
.section-home__image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  box-shadow: none;
  border: none;
  transition: 0.3s ease;
  position: absolute;
  right: 20%;
  bottom: 0;
}

/* line 303, app/assets/stylesheets/_home.scss */
.section-home__image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  /* line 291, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  /* line 291, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    width: 250px;
    height: 250px;
  }
}

/* line 319, app/assets/stylesheets/_home.scss */
.section-home__buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

/* line 327, app/assets/stylesheets/_home.scss */
.section-home__buttons.animated-buttons .btn {
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}

/* line 332, app/assets/stylesheets/_home.scss */
.section-home__buttons.animated-buttons .btn:hover {
  transform: translateZ(20px) scale(1.08);
}

@media (max-width: 992px) {
  /* line 319, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* line 319, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 350, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 361, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn i {
  margin-right: 0.25rem;
}

/* line 365, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn-talk {
  background-color: #ea1d21;
  color: white;
}

/* line 369, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn-talk:hover {
  background-color: #ab1013;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateZ(10px);
}

/* line 376, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn-download {
  background-color: #eeedec;
  color: #2b3f8a;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* line 382, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn-download:hover {
  background-color: #2b3f8a;
  color: #eeedec;
  border-color: #ea1d21;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateZ(10px);
}

@media (max-width: 992px) and (min-width: 601px) {
  /* line 397, app/assets/stylesheets/_home.scss */
  .section-home__content {
    position: relative;
    padding-top: 200px !important;
  }
  /* line 402, app/assets/stylesheets/_home.scss */
  .section-home__text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 0;
  }
  /* line 409, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 416, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    width: 65vw;
    max-width: 720px;
    height: auto;
    max-height: 55vh;
    /* Dégradé d'opacité: transparent en bas → opaque en haut */
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.6) 60%, black 85%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.6) 60%, black 85%);
    z-index: 0;
    pointer-events: none;
  }
}

@media (max-width: 600px) and (min-width: 320px) {
  /* line 451, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 250px !important;
  }
  /* line 453, app/assets/stylesheets/_home.scss */
  .section-home .section-home__text .animated-container {
    margin-top: -50px;
  }
  /* line 457, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 464, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    width: 65vw;
    max-width: 720px;
    height: auto;
    max-height: 40vh;
    /* Dégradé d'opacité: transparent en bas → opaque en haut */
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.6) 60%, black 85%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.6) 60%, black 85%);
    z-index: 0;
    pointer-events: none;
  }
}

/* line 5, app/assets/stylesheets/_contact_modal.scss */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 19, app/assets/stylesheets/_contact_modal.scss */
.modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* line 25, app/assets/stylesheets/_contact_modal.scss */
.modal-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 550px;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: relative;
}

/* line 36, app/assets/stylesheets/_contact_modal.scss */
.active .modal-container {
  transform: scale(1);
}

/* line 41, app/assets/stylesheets/_contact_modal.scss */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  background-color: #2b3f8a;
  color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* line 52, app/assets/stylesheets/_contact_modal.scss */
.modal-header h2 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

/* line 59, app/assets/stylesheets/_contact_modal.scss */
.modal-header .modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.2s ease;
  line-height: 1;
}

/* line 68, app/assets/stylesheets/_contact_modal.scss */
.modal-header .modal-close:hover {
  color: white;
}

/* line 74, app/assets/stylesheets/_contact_modal.scss */
.modal-body {
  padding: 1.5rem;
}

/* line 78, app/assets/stylesheets/_contact_modal.scss */
.modal-intro {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #202f66;
  font-size: 1rem;
  text-align: center;
}

/* line 87, app/assets/stylesheets/_contact_modal.scss */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 93, app/assets/stylesheets/_contact_modal.scss */
.form-group {
  margin-bottom: 1rem;
  width: 100%;
}

/* line 97, app/assets/stylesheets/_contact_modal.scss */
.form-group.form-group-half {
  flex: 1;
}

/* line 101, app/assets/stylesheets/_contact_modal.scss */
.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #202f66;
}

/* line 108, app/assets/stylesheets/_contact_modal.scss */
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 117, app/assets/stylesheets/_contact_modal.scss */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 124, app/assets/stylesheets/_contact_modal.scss */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* line 129, app/assets/stylesheets/_contact_modal.scss */
.form-group .form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}

/* line 137, app/assets/stylesheets/_contact_modal.scss */
.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

/* line 141, app/assets/stylesheets/_contact_modal.scss */
.form-submit .btn-primary {
  background-color: #2b3f8a;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  min-width: 150px;
}

/* line 153, app/assets/stylesheets/_contact_modal.scss */
.form-submit .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 160, app/assets/stylesheets/_contact_modal.scss */
.form-response {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/* line 166, app/assets/stylesheets/_contact_modal.scss */
.form-response .success-message, .form-response .error-message {
  display: none;
}

/* line 169, app/assets/stylesheets/_contact_modal.scss */
.form-response .success-message i, .form-response .error-message i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* line 174, app/assets/stylesheets/_contact_modal.scss */
.form-response .success-message p, .form-response .error-message p {
  margin: 0;
}

/* line 179, app/assets/stylesheets/_contact_modal.scss */
.form-response .success-message {
  color: #28a745;
}

/* line 182, app/assets/stylesheets/_contact_modal.scss */
.form-response .success-message.active {
  display: block;
}

/* line 187, app/assets/stylesheets/_contact_modal.scss */
.form-response .error-message {
  color: #dc3545;
}

/* line 190, app/assets/stylesheets/_contact_modal.scss */
.form-response .error-message.active {
  display: block;
}

@media (max-width: 768px) {
  /* line 198, app/assets/stylesheets/_contact_modal.scss */
  .modal-container {
    width: 95%;
    max-height: 85vh;
  }
  /* line 203, app/assets/stylesheets/_contact_modal.scss */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  /* line 209, app/assets/stylesheets/_contact_modal.scss */
  .form-submit .btn-primary {
    width: 100%;
  }
}

/* line 4, app/assets/stylesheets/_admin_login.scss */
.devise-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

/* line 10, app/assets/stylesheets/_admin_login.scss */
.devise-body .admin-main {
  height: 100vh;
  padding: 0;
  margin: 0;
}

/* line 17, app/assets/stylesheets/_admin_login.scss */
.admin-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* Hauteur fixe pour éviter le défilement */
  padding: 0;
  /* Suppression du padding pour maximiser l'espace */
  background: linear-gradient(135deg, #2b3f8a 0%, #1a2a5e 100%);
  position: relative;
  overflow: hidden;
}

/* line 27, app/assets/stylesheets/_admin_login.scss */
.admin-login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* line 38, app/assets/stylesheets/_admin_login.scss */
.admin-login-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.5;
  animation: animateBackground 60s linear infinite;
}

@keyframes animateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 61, app/assets/stylesheets/_admin_login.scss */
.admin-login-form {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 1;
  position: relative;
  z-index: 2;
  border: none;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* line 75, app/assets/stylesheets/_admin_login.scss */
.admin-login-form h1 {
  margin-bottom: 1rem;
  color: #2b3f8a;
  text-align: center;
  font-weight: 700;
}

/* line 82, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .alert {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

/* line 87, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .alert.alert-danger {
  background-color: rgba(234, 29, 33, 0.1);
  color: #ea1d21;
  border: 1px solid rgba(234, 29, 33, 0.2);
}

/* line 94, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-group {
  margin-bottom: 1rem;
}

/* line 97, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #202f66;
  font-size: 0.95rem;
}

/* line 105, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eeedec;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset;
}

/* line 115, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-group input:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 3px rgba(43, 63, 138, 0.15);
}

/* line 121, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-group input::placeholder {
  color: rgba(108, 117, 125, 0.6);
  font-size: 0.95rem;
}

/* line 128, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 136, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn {
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  flex: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* line 154, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* line 166, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn:hover::after {
  transform: translateY(0);
}

/* line 170, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 176, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn-primary {
  background-color: #272a8a;
  color: white;
  border: none;
  border: 2px solid #eeedec;
  cursor: pointer;
}

/* line 183, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn-primary:hover {
  background-color: #21316b;
}

/* line 188, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn-secondary {
  background-color: white;
  color: #202f66;
  border: 2px solid #eeedec;
}

/* line 193, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .form-actions .btn-secondary:hover {
  background-color: #eeedec;
  border-color: #e2e0df;
}

/* line 200, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .forgot-password {
  margin-top: 1rem;
  text-align: center;
}

/* line 204, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .forgot-password a {
  color: #2b3f8a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* line 214, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .forgot-password a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #2b3f8a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* line 226, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .forgot-password a:hover {
  text-decoration: none;
  background-color: rgba(43, 63, 138, 0.05);
}

/* line 230, app/assets/stylesheets/_admin_login.scss */
.admin-login-form .forgot-password a:hover::after {
  width: 80%;
}

/* line 6, app/assets/stylesheets/_contact_button.scss */
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background-color: #2b3f8a;
  color: white !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none !important;
}

/* line 21, app/assets/stylesheets/_contact_button.scss */
.contact-button:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
}

/* line 28, app/assets/stylesheets/_contact_button.scss */
.contact-button:active {
  transform: translateY(0);
}

/* line 33, app/assets/stylesheets/_contact_button.scss */
.contact-button::after {
  display: none !important;
}

/* line 4, app/assets/stylesheets/_form_experience.scss */
.admin-form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  margin-bottom: 24px;
}

/* line 11, app/assets/stylesheets/_form_experience.scss */
.admin-form__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 16, app/assets/stylesheets/_form_experience.scss */
.admin-form__header h2 {
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 21, app/assets/stylesheets/_form_experience.scss */
.admin-form__header p {
  color: rgba(32, 47, 102, 0.7);
}

/* line 27, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group {
  margin-bottom: 1.5rem;
}

/* line 30, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #202f66;
}

/* line 37, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .hint {
  display: block;
  font-size: 0.85rem;
  color: rgba(32, 47, 102, 0.6);
  margin-top: 0.25rem;
}

/* line 44, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group input[type="text"],
.admin-form__form .form-group input[type="date"],
.admin-form__form .form-group select,
.admin-form__form .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 56, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group input[type="text"]:focus,
.admin-form__form .form-group input[type="date"]:focus,
.admin-form__form .form-group select:focus,
.admin-form__form .form-group textarea:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 62, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group input[type="text"]:disabled,
.admin-form__form .form-group input[type="date"]:disabled,
.admin-form__form .form-group select:disabled,
.admin-form__form .form-group textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* line 68, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* line 73, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

/* line 79, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .checkbox-group input[type="checkbox"] {
  margin-right: 0.25rem;
}

/* line 83, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .checkbox-group label {
  display: inline-block;
  margin-bottom: 0;
}

/* line 89, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .date-group {
  display: flex;
  gap: 1rem;
}

/* line 93, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .date-group .date-field {
  flex: 1;
}

/* line 98, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .logo-preview {
  margin-top: 1rem;
}

/* line 101, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .logo-preview img {
  max-width: 120px;
  max-height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
}

/* line 109, app/assets/stylesheets/_form_experience.scss */
.admin-form__form .form-group .logo-preview .no-logo {
  width: 120px;
  height: 120px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(32, 47, 102, 0.5);
  font-size: 0.9rem;
}

/* line 124, app/assets/stylesheets/_form_experience.scss */
.admin-form__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 131, app/assets/stylesheets/_form_experience.scss */
.admin-form__actions .btn-cancel {
  background-color: #f5f5f5;
  color: #202f66;
}

/* line 135, app/assets/stylesheets/_form_experience.scss */
.admin-form__actions .btn-cancel:hover {
  background-color: #eee;
}

/* line 144, app/assets/stylesheets/_form_experience.scss */
.experience-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* line 150, app/assets/stylesheets/_form_experience.scss */
.experience-list__header h2 {
  margin-bottom: 0;
}

/* line 154, app/assets/stylesheets/_form_experience.scss */
.experience-list__header .header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 160, app/assets/stylesheets/_form_experience.scss */
.experience-list__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 166, app/assets/stylesheets/_form_experience.scss */
.experience-list__item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

/* line 174, app/assets/stylesheets/_form_experience.scss */
.experience-list__item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* line 180, app/assets/stylesheets/_form_experience.scss */
.admin-experience-container .experience-list__item, .admin-experience-container .experience-list__item .experience-list__item {
  transition: none !important;
}

/* line 184, app/assets/stylesheets/_form_experience.scss */
.admin-experience-container .experience-list__item:hover, .admin-experience-container .experience-list__item .experience-list__item:hover {
  transform: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* line 190, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: rgba(43, 63, 138, 0.05);
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 197, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* line 205, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 210, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .logo .no-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(32, 47, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #202f66;
  font-weight: 700;
  font-size: 1.2rem;
}

/* line 224, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .company {
  flex: 1;
}

/* line 227, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .company h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* line 234, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-body {
  padding: 1rem;
}

/* line 237, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-body .position {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* line 242, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-body .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 251, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-body .description {
  color: rgba(32, 47, 102, 0.9);
  margin-bottom: 0;
}

/* line 257, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-actions {
  display: flex;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
  background-color: #f9f9f9;
}

/* line 263, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-actions a {
  margin-right: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

/* line 269, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-actions a i {
  margin-right: 0.25rem;
}

/* line 277, app/assets/stylesheets/_form_experience.scss */
.experience-list__group {
  margin-bottom: 1.5rem;
}

/* line 280, app/assets/stylesheets/_form_experience.scss */
.experience-list__group-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* line 285, app/assets/stylesheets/_form_experience.scss */
.experience-list__group-header .logo {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}

/* line 290, app/assets/stylesheets/_form_experience.scss */
.experience-list__group-header .logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 296, app/assets/stylesheets/_form_experience.scss */
.experience-list__group-header h3 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

/* line 302, app/assets/stylesheets/_form_experience.scss */
.experience-list__group-items {
  margin-left: calc(40px + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 4, app/assets/stylesheets/_xp_pro.scss */
.section-experience {
  position: relative;
}

/* line 7, app/assets/stylesheets/_xp_pro.scss */
.section-experience__header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* line 13, app/assets/stylesheets/_xp_pro.scss */
.section-experience__header h2 {
  display: inline-block;
  color: #2b3f8a !important;
  margin-bottom: 0 !important;
  font-size: clamp(30px, 10vw, 150px) !important;
  font-weight: 700;
  font-family: "gibson", "canada-type-gibson", "Changa One", "Arial Black", "Arial Bold", sans-serif;
  letter-spacing: clamp(0.5px, 0.1vw, 1px) !important;
  line-height: 0.9 !important;
  font-style: normal;
  white-space: nowrap;
  padding: 0 !important;
}

/* line 30, app/assets/stylesheets/_xp_pro.scss */
.section-experience__timeline {
  position: relative;
  top: calc(1.5rem + 10px);
}

/* line 34, app/assets/stylesheets/_xp_pro.scss */
.section-experience__timeline::before {
  content: '';
  position: absolute;
  top: -50px;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: rgba(238, 237, 236, 0.3);
  z-index: 1;
}

@media (min-width: 768px) {
  /* line 34, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* line 49, app/assets/stylesheets/_xp_pro.scss */
.section-experience__timeline::after {
  background-color: rgba(43, 63, 138, 0.3);
}

/* line 55, app/assets/stylesheets/_xp_pro.scss */
.section-experience__content {
  position: relative;
  z-index: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(300px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(300px);
    opacity: 0;
  }
}

@keyframes slideInRightMobile {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRightMobile {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes dotPop {
  0% {
    transform: var(--dot-base-transform, none) scale(0);
    opacity: 0;
  }
  60% {
    transform: var(--dot-base-transform, none) scale(1.15);
    opacity: 1;
  }
  80% {
    transform: var(--dot-base-transform, none) scale(0.95);
  }
  100% {
    transform: var(--dot-base-transform, none) scale(1);
    opacity: 1;
  }
}

/* line 128, app/assets/stylesheets/_xp_pro.scss */
.company-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease;
  transform: translateX(300px);
}

/* line 143, app/assets/stylesheets/_xp_pro.scss */
.company-card.animate-in {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* line 147, app/assets/stylesheets/_xp_pro.scss */
.company-card.animate-out {
  animation: slideOutRight 0.8s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

/* line 152, app/assets/stylesheets/_xp_pro.scss */
.company-card.animate-in .experience-item::before {
  animation: dotPop 0.38s cubic-bezier(0.2, 0.8, 0.2, 1.1) 0.8s both;
  opacity: 1;
  transform: var(--dot-base-transform) scale(1);
}

@media (max-width: 675px) {
  /* line 128, app/assets/stylesheets/_xp_pro.scss */
  .company-card {
    transform: translateX(100px);
  }
  /* line 163, app/assets/stylesheets/_xp_pro.scss */
  .company-card.animate-in {
    animation: slideInRightMobile 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  /* line 167, app/assets/stylesheets/_xp_pro.scss */
  .company-card.animate-out {
    animation: slideOutRightMobile 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
  }
  /* line 172, app/assets/stylesheets/_xp_pro.scss */
  .company-card.animate-in .experience-item::before {
    animation-delay: 0.6s;
  }
}

/* line 177, app/assets/stylesheets/_xp_pro.scss */
.company-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 181, app/assets/stylesheets/_xp_pro.scss */
.company-card__header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #2b3f8a;
  color: #eeedec !important;
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
  border-radius: 12px 12px 0 0;
  position: relative;
  position: relative;
}

/* line 191, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  padding: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* line 205, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo:hover {
  transform: scale(1.05);
}

/* line 209, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 220, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo, .company-card__header .company-name {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* line 225, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo:hover ~ .logo-preview, .company-card__header .logo:focus ~ .logo-preview, .company-card__header .company-name:hover ~ .logo-preview, .company-card__header .company-name:focus ~ .logo-preview {
  opacity: 1;
  visibility: visible;
}

/* line 233, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  margin: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  border-radius: 12px;
}

/* line 251, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* line 256, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo-preview img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* line 268, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .company-name h3 {
  margin-bottom: 0.25rem;
  color: #eeedec !important;
  font-size: 1.5rem;
}

/* line 276, app/assets/stylesheets/_xp_pro.scss */
.company-card__body {
  padding: 0;
}

/* line 282, app/assets/stylesheets/_xp_pro.scss */
.experience-item {
  position: relative;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.05);
}

/* line 287, app/assets/stylesheets/_xp_pro.scss */
.experience-item:last-child {
  border-bottom: none;
}

/* line 291, app/assets/stylesheets/_xp_pro.scss */
.experience-item:hover {
  background-color: rgba(32, 47, 102, 0.01);
}

/* line 295, app/assets/stylesheets/_xp_pro.scss */
.experience-item::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2b3f8a;
  top: 24px;
  left: -30px;
  z-index: 2;
  --dot-base-transform: none;
  opacity: 1;
  transform: var(--dot-base-transform);
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  /* line 295, app/assets/stylesheets/_xp_pro.scss */
  .experience-item::before {
    left: 50%;
    --dot-base-transform: translateX(-50%);
  }
}

/* line 318, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header {
  margin-bottom: 1rem;
}

/* line 321, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header .job-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 328, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header .employment-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* line 340, app/assets/stylesheets/_xp_pro.scss */
.experience-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 348, app/assets/stylesheets/_xp_pro.scss */
.experience-item__meta .dates,
.experience-item__meta .location {
  display: flex;
  align-items: center;
}

/* line 353, app/assets/stylesheets/_xp_pro.scss */
.experience-item__meta .dates i,
.experience-item__meta .location i {
  margin-right: 0.25rem;
}

/* line 359, app/assets/stylesheets/_xp_pro.scss */
.experience-item__description {
  color: rgba(32, 47, 102, 0.9);
  margin-bottom: 1rem;
}

/* line 363, app/assets/stylesheets/_xp_pro.scss */
.experience-item__description p {
  margin-bottom: 0.5rem;
}

/* line 366, app/assets/stylesheets/_xp_pro.scss */
.experience-item__description p:last-child {
  margin-bottom: 0;
}

/* line 371, app/assets/stylesheets/_xp_pro.scss */
.experience-item__description ul {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 375, app/assets/stylesheets/_xp_pro.scss */
.experience-item__description ul li {
  margin-bottom: 0.25rem;
}

/* line 381, app/assets/stylesheets/_xp_pro.scss */
.experience-item__skills {
  margin-top: 1rem;
}

/* line 384, app/assets/stylesheets/_xp_pro.scss */
.experience-item__skills .skills-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* line 390, app/assets/stylesheets/_xp_pro.scss */
.experience-item__skills .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* line 395, app/assets/stylesheets/_xp_pro.scss */
.experience-item__skills .skills-list .skill-tag {
  padding: 0.25rem 0.5rem;
  background-color: rgba(32, 47, 102, 0.05);
  border-radius: 4px;
  font-size: 0.85rem;
  color: #202f66;
}

/* line 406, app/assets/stylesheets/_xp_pro.scss */
.experience-item::before {
  content: '';
  position: absolute;
  top: calc(1.5rem + 10px);
  left: -30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2b3f8a;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 1;
  transform: var(--dot-base-transform, none) scale(1);
}

@media (max-width: 768px) {
  /* line 406, app/assets/stylesheets/_xp_pro.scss */
  .experience-item::before {
    left: 18px;
  }
}

@media (max-width: 768px) {
  /* line 430, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__timeline {
    padding-left: 50px;
  }
  /* line 438, app/assets/stylesheets/_xp_pro.scss */
  .company-card__header .company-name h3 {
    font-size: 1.3rem;
  }
  /* line 446, app/assets/stylesheets/_xp_pro.scss */
  .experience-item__meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  /* line 452, app/assets/stylesheets/_xp_pro.scss */
  .logo-preview {
    display: none !important;
  }
}

@media (max-width: 576px) {
  /* line 459, app/assets/stylesheets/_xp_pro.scss */
  .company-card__header {
    flex-direction: column;
    text-align: center;
  }
  /* line 463, app/assets/stylesheets/_xp_pro.scss */
  .company-card__header .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* line 4, app/assets/stylesheets/_admin_header_icon.scss */
.header-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 10, app/assets/stylesheets/_admin_header_icon.scss */
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2b3f8a;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(43, 63, 138, 0.2);
}

/* line 24, app/assets/stylesheets/_admin_header_icon.scss */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  margin: 0 !important;
  box-shadow: none !important;
}

/* line 33, app/assets/stylesheets/_admin_header_icon.scss */
.empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #2b3f8a;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(43, 63, 138, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(43, 63, 138, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(43, 63, 138, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(43, 63, 138, 0.3);
  }
}

/* line 63, app/assets/stylesheets/_admin_header_icon.scss */
.empty-state h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

/* line 69, app/assets/stylesheets/_admin_header_icon.scss */
.empty-state p {
  color: #6c757d;
  margin-bottom: 20px;
}

/* line 6, app/assets/stylesheets/_action_buttons.scss */
.actions-cell {
  width: 130px;
}

/* line 9, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-start;
}

/* line 16, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: rgba(248, 249, 250, 0.8);
  border: 1px solid #e9ecef;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
}

/* line 30, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button i {
  font-size: 0.875rem;
}

/* line 34, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button.view:hover {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-color: rgba(13, 110, 253, 0.2);
  transform: translateY(-2px);
}

/* line 41, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button.edit:hover {
  background-color: rgba(29, 159, 98, 0.1);
  color: #1d9f62;
  border-color: rgba(29, 159, 98, 0.2);
  transform: translateY(-2px);
}

/* line 48, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button.delete:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

/* line 59, app/assets/stylesheets/_action_buttons.scss */
.development-image-item .actions-cell {
  margin-top: 8px;
  width: 100%;
}

/* line 63, app/assets/stylesheets/_action_buttons.scss */
.development-image-item .actions-cell .action-buttons {
  justify-content: center;
}

/* line 5, app/assets/stylesheets/_projects.scss */
.section-projects {
  background-color: #141414 !important;
}

/* line 8, app/assets/stylesheets/_projects.scss */
.section-projects__header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

/* line 13, app/assets/stylesheets/_projects.scss */
.section-projects__header .title-container {
  position: relative;
  display: inline-block;
  /* Développement: description alignée en bas de l'espace disponible */
}

/* line 17, app/assets/stylesheets/_projects.scss */
.section-projects__header .title-container h2 {
  display: inline-block;
  color: #dadada !important;
  margin-bottom: clamp(1rem, 2vw, 2rem) !important;
  font-size: clamp(35px, 12vw, 170px) !important;
  font-weight: 900;
  font-family: "gibson", "canada-type-gibson", "Changa One", "Arial Black", "Arial Bold", sans-serif;
  letter-spacing: clamp(0.5px, 0.1vw, 1px) !important;
  line-height: 1.1 !important;
  font-style: normal;
  white-space: nowrap;
  padding: 0 !important;
}

/* line 32, app/assets/stylesheets/_projects.scss */
.section-projects__header .title-container[data-type="development"] .project-card__description {
  margin-top: auto;
}

/* line 36, app/assets/stylesheets/_projects.scss */
.section-projects__header .title-container p.section-projects__subtitle {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ea1d21;
  color: #eeedec !important;
  font-family: "Roboto", sans-serif !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.95;
  font-size: clamp(8px, 1.5vw, 20px) !important;
  padding: clamp(2px, 0.4vw, 5px) clamp(5px, 0.8vw, 12px);
  transform: rotate(10deg) translateY(clamp(-2px, 0.5vw, 10px)) translateX(clamp(15px, 4vw, 30px));
  transform-origin: top right;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* line 59, app/assets/stylesheets/_projects.scss */
.section-projects__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* line 64, app/assets/stylesheets/_projects.scss */
.section-projects__filters .filters-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* line 74, app/assets/stylesheets/_projects.scss */
.section-projects__filters .filters-list .filter-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  color: #6c757d;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

/* line 82, app/assets/stylesheets/_projects.scss */
.section-projects__filters .filters-list .filter-item:hover {
  color: #202f66;
}

/* line 86, app/assets/stylesheets/_projects.scss */
.section-projects__filters .filters-list .filter-item.active {
  color: #2b3f8a;
  border-bottom-color: #2b3f8a;
}

/* line 94, app/assets/stylesheets/_projects.scss */
.section-projects__content {
  margin-top: 0;
}

/* line 100, app/assets/stylesheets/_projects.scss */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 106, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] {
  background: linear-gradient(135deg, #2952bc 0%, #333333 100%) !important;
  border: 1px solid rgba(89, 216, 238, 0.5) !important;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 370px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: opacity, transform;
  position: relative;
  backdrop-filter: blur(10px);
  border: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  padding-bottom: 70px;
  color: #eeedec;
  /* Style uniforme pour toutes les actions, quelle que soit leur position */
}

/* line 132, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"]:hover {
  transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-8px) scale(var(--pc-hover-scale, 1.06));
  box-shadow: 0 12px 28px rgba(0, 153, 255, 0.65) !important;
  border: 1px solid rgba(89, 216, 238, 0.9) !important;
}

/* line 138, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
  background-color: #f8f9fa;
}

/* line 145, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] .project-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 153, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 159, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] .project-image .placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #2b3f8a;
  font-size: 2rem;
}

/* line 172, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] .project-info h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.2rem;
  color: #202f66;
}

/* line 180, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] {
  padding: 1.5rem;
}

/* line 183, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-description {
  color: #1f1f1f;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* line 189, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

/* line 195, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-technologies .technology-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 206, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* line 211, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 221, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 225, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 230, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: #1f1f1f;
}

/* line 238, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-icon:hover {
  background-color: #e9ecef;
  color: #2b3f8a;
}

/* line 243, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-icon i {
  font-size: 1rem;
}

/* line 251, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-type-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 260, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-type-badge.type-development {
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
}

/* line 265, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-type-badge.type-retouche {
  background-color: rgba(167, 69, 40, 0.1);
  color: #28a745;
}

/* line 271, app/assets/stylesheets/_projects.scss */
.project-card[data-type__title="development"] {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-weight: bold;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 285, app/assets/stylesheets/_projects.scss */
.project-card[data-type__technologies="development"] {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  overflow: visible;
  white-space: normal;
  max-height: none;
}

/* line 294, app/assets/stylesheets/_projects.scss */
.project-card[data-type__technologies="development"] .technology-tag {
  background-color: rgba(225, 225, 225, 0.05) !important;
  color: #1f1f1f !important;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: normal;
}

/* line 304, app/assets/stylesheets/_projects.scss */
.project-card[data-type__description="development"] {
  color: #eeedec;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
}

/* line 318, app/assets/stylesheets/_projects.scss */
.project-card[data-type__content="development"] {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  border: none;
  margin-bottom: 0;
  position: relative;
  padding-bottom: var(--pc-actions-h, 72px);
}

/* line 331, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"],
.project-card[data-type="development"] > .project-card__actions,
.project-card[data-type="development"] .project-card__content > .project-card__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 1rem;
  width: 100%;
  margin: 0;
  margin-top: auto;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 350, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn,
.project-card[data-type="development"] > .project-card__actions .btn,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  min-width: 120px;
  flex: 0 0 auto;
  width: calc(50% - 1rem / 2);
  height: 41px;
  /* Hauteur fixe pour tous les boutons */
  box-sizing: border-box;
  margin: 0;
}

/* line 367, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn-primary,
.project-card[data-type="development"] > .project-card__actions .btn-primary,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn-primary {
  background: linear-gradient(135deg, #3358ff5c 0%, #37234a 100%) !important;
  border: 1px solid rgba(89, 216, 238, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* line 373, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn-primary:hover,
.project-card[data-type="development"] > .project-card__actions .btn-primary:hover,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn-primary:hover {
  background-color: #1f1f1f !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(89, 216, 238, 0.9) !important;
  transform: translateY(-2px);
}

/* line 381, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn-secondary,
.project-card[data-type="development"] > .project-card__actions .btn-secondary,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn-secondary {
  background: linear-gradient(135deg, #37234a 0%, #3358ff5c 100%) !important;
  border: 1px solid rgba(89, 216, 238, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* line 387, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn-secondary:hover,
.project-card[data-type="development"] > .project-card__actions .btn-secondary:hover,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn-secondary:hover {
  background-color: #1f1f1f !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(89, 216, 238, 0.9) !important;
  transform: translateY(-2px);
}

/* line 394, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] .btn-secondary i,
.project-card[data-type="development"] > .project-card__actions .btn-secondary i,
.project-card[data-type="development"] .project-card__content > .project-card__actions .btn-secondary i {
  margin-right: 0.25rem;
}

/* line 400, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="development"] > .btn:only-child,
.project-card[data-type="development"] > .project-card__actions > .btn:only-child,
.project-card[data-type="development"] .project-card__content > .project-card__actions > .btn:only-child {
  width: 100% !important;
  flex: 1 0 100% !important;
}

/* line 406, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-card__content > .project-card__description {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
  margin-bottom: 5px !important;
}

/* line 418, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-card__title {
  color: #eeedec;
}

/* line 422, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-card__description {
  color: #86b5de;
}

/* line 427, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] {
  background: linear-gradient(145deg, #ff0000a0 0%, #3d0036 100%);
  border: 1px solid rgba(238, 89, 89, 0.5) !important;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 370px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: opacity, transform;
  position: relative;
  backdrop-filter: blur(10px);
  border: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  padding-bottom: 70px;
  color: #eeedec;
  /* Style uniforme pour toutes les actions, quelle que soit leur position */
}

/* line 453, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"]:hover {
  transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-8px) scale(var(--pc-hover-scale, 1.06));
  box-shadow: 0 12px 28px rgba(255, 0, 93, 0.65) !important;
  border: 1px solid rgba(238, 89, 141, 0.9) !important;
}

/* line 459, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
  background-color: #f8f9fa;
}

/* line 466, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] .project-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 474, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 480, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] .project-image .placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #2b3f8a;
  font-size: 2rem;
}

/* line 493, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] .project-info h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.2rem;
  color: #202f66;
}

/* line 501, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] {
  padding: 1.5rem;
}

/* line 504, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-description {
  color: #1f1f1f;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* line 510, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

/* line 516, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-technologies .technology-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 527, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* line 532, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 542, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 546, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 551, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: #1f1f1f;
}

/* line 559, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-icon:hover {
  background-color: #e9ecef;
  color: #2b3f8a;
}

/* line 564, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-icon i {
  font-size: 1rem;
}

/* line 572, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-type-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 581, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-type-badge.type-development {
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
}

/* line 586, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-type-badge.type-retouche {
  background-color: rgba(167, 69, 40, 0.1);
  color: #28a745;
}

/* line 592, app/assets/stylesheets/_projects.scss */
.project-card[data-type__title="retouche"] {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-weight: bold;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 606, app/assets/stylesheets/_projects.scss */
.project-card[data-type__technologies="retouche"] {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  overflow: visible;
  white-space: normal;
  max-height: none;
}

/* line 615, app/assets/stylesheets/_projects.scss */
.project-card[data-type__technologies="retouche"] .technology-tag {
  background-color: rgba(225, 225, 225, 0.05) !important;
  color: #1f1f1f !important;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: normal;
}

/* line 625, app/assets/stylesheets/_projects.scss */
.project-card[data-type__description="retouche"] {
  color: #eeedec;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
  max-height: calc(1.4em * 3);
  min-height: calc(1.4em * 3);
  flex-shrink: 0;
}

/* line 642, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"][data-type="development"] .project-card[data-type__description="retouche"] {
  margin-top: auto;
}

/* line 646, app/assets/stylesheets/_projects.scss */
.project-card[data-type__content="retouche"] {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  border: none;
  margin-bottom: 0;
  position: relative;
  padding-bottom: var(--pc-actions-h, 72px);
}

/* line 659, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="retouche"],
.project-card[data-type="retouche"] > .project-card__actions,
.project-card[data-type="retouche"] .project-card__content > .project-card__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 1rem;
  width: 100%;
  margin: 0;
  margin-top: auto;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 678, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="retouche"] .btn,
.project-card[data-type="retouche"] > .project-card__actions .btn,
.project-card[data-type="retouche"] .project-card__content > .project-card__actions .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  min-width: 120px;
  width: 100% !important;
  flex: 1 0 100% !important;
  height: 41px;
  /* Hauteur fixe pour tous les boutons */
  box-sizing: border-box;
  margin: 0;
}

/* line 695, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="retouche"] .btn-primary,
.project-card[data-type="retouche"] > .project-card__actions .btn-primary,
.project-card[data-type="retouche"] .project-card__content > .project-card__actions .btn-primary {
  background: linear-gradient(135deg, #8701018f 0%, #69015d 100%) !important;
  border: 1px solid rgba(238, 89, 89, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(234, 102, 102, 0.3) !important;
}

/* line 701, app/assets/stylesheets/_projects.scss */
.project-card[data-type__actions="retouche"] .btn-primary:hover,
.project-card[data-type="retouche"] > .project-card__actions .btn-primary:hover,
.project-card[data-type="retouche"] .project-card__content > .project-card__actions .btn-primary:hover {
  background-color: #1f1f1f !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(238, 89, 89, 0.9) !important;
  transform: translateY(-2px);
}

/* line 711, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-card__title {
  color: #eeedec;
}

/* line 715, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-card__description {
  color: #86b5de;
}

/* line 723, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] {
  position: relative;
  overflow: hidden;
}

/* line 729, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"]:hover .project-image-main,
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"]:hover .project-image-hover {
  transition: opacity 1s ease-in-out !important;
}

/* line 737, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .project-image-main,
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .project-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

/* line 749, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .project-image-main {
  z-index: 1;
  opacity: 1;
}

/* line 755, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .project-image-hover {
  z-index: 2;
  opacity: 0;
}

/* line 765, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container {
  position: relative;
  overflow: hidden;
}

/* line 769, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .side-by-side-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* line 777, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .image-half-container {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* line 785, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .image-half {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
  transform-origin: center center;
}

/* line 796, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .separator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: white;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* line 809, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container.zoomed .image-half {
  transform: scale(1);
}

/* line 814, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container.dezoomed .image-half {
  transform: scale(3);
}

/* line 819, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .image-half {
  transform: scale(1);
}

/* line 823, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container .side-by-side-container .image-half:hover {
  transform: none !important;
  transition: none !important;
}

/* line 834, app/assets/stylesheets/_projects.scss */
.projects-section .project-card[data-type="retouche"] .label:contains("Avant"),
.projects-section .project-card[data-type="retouche"] .label:contains("Après"),
.projects-section .project-card[data-type="retouche"] h4:contains("Avant"),
.projects-section .project-card[data-type="retouche"] h4:contains("Après"),
.projects-section .project-card[data-type="retouche"] h5:contains("Avant"),
.projects-section .project-card[data-type="retouche"] h5:contains("Après") {
  display: none !important;
}

/* line 847, app/assets/stylesheets/_projects.scss */
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="slider"] .label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="slider"] .image-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="slider"] .slider-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="slider"] .before-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="slider"] .after-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .image-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .slider-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .before-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="before_after"] .after-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="side_by_side"] .label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="side_by_side"] .image-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="side_by_side"] .slider-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="side_by_side"] .before-label,
.projects-section .project-card[data-type="retouche"] .project-image-container[data-visual-type="side_by_side"] .after-label {
  display: none !important;
}

/* line 860, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"] {
  position: relative;
  overflow: hidden;
}

/* line 865, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"] .project-image-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cinematicMainImage 9s infinite ease-out;
}

/* line 878, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.standard-animation-active[data-visual-type="single"] .standard-zoom-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  animation: cinematicTravellingHorizontal 9s infinite ease-in-out;
}

/* line 893, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.standard-animation-active[data-visual-type="single"] .standard-vertical-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  opacity: 0;
  animation: cinematicTravellingVertical 9s infinite ease-in-out;
}

/* line 910, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"]:hover .project-image-main,
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"]:hover .standard-zoom-slide-layer,
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"]:hover .standard-vertical-slide-layer {
  animation-play-state: running !important;
}

@keyframes cinematicMainImage {
  0% {
    transform: scale(1.05);
    opacity: 1;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  33.33% {
    transform: scale(1);
    opacity: 1;
  }
  33.34%, 97% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes cinematicTravellingHorizontal {
  0%, 33.33% {
    opacity: 0;
    transform: scale(3) translateX(15%);
  }
  35% {
    opacity: 0.3;
    transform: scale(3) translateX(15%);
  }
  38% {
    opacity: 1;
    transform: scale(3) translateX(15%);
  }
  64% {
    opacity: 1;
    transform: scale(3) translateX(-15%);
  }
  66% {
    opacity: 1;
    transform: scale(3) translateX(-15%);
  }
  68% {
    opacity: 0.6;
    transform: scale(3) translateX(-15%);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(3) translateX(-15%);
  }
}

@keyframes cinematicTravellingVertical {
  0%, 65% {
    opacity: 0;
    transform: scale(2) translateY(10%);
  }
  66% {
    opacity: 0.5;
    transform: scale(2) translateY(10%);
  }
  68% {
    opacity: 0.9;
    transform: scale(2) translateY(10%);
  }
  70% {
    opacity: 1;
    transform: scale(2) translateY(10%);
  }
  95% {
    opacity: 1;
    transform: scale(2) translateY(-10%);
  }
  98% {
    opacity: 0.3;
    transform: scale(2) translateY(-10%);
  }
  100% {
    opacity: 0;
    transform: scale(2) translateY(-10%);
  }
}

/* line 1041, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] {
  /* Styles d'optimisation pour les animations */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* line 1046, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"]:hover {
  transform: translateY(-8px) scale(1.02) translateZ(0);
}

/* line 1051, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] {
  /* Styles d'optimisation pour les animations */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* line 1056, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-card__image {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* line 1061, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .side-by-side-wrapper,
.project-card[data-type="retouche"] .project-image-zoom-layer,
.project-card[data-type="retouche"] .slider-image-container {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

/* line 5, app/assets/stylesheets/_sections.scss */
.section {
  position: relative;
  padding: 3rem 0;
  transition: background-color 1.2s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent !important;
}

/* line 16, app/assets/stylesheets/_sections.scss */
.section h2 {
  position: relative;
  z-index: 2;
  color: inherit;
}

/* line 25, app/assets/stylesheets/_sections.scss */
.section-home {
  z-index: 1;
}

/* line 29, app/assets/stylesheets/_sections.scss */
.section-experience {
  z-index: 1;
}

/* line 33, app/assets/stylesheets/_sections.scss */
.section-education {
  background-color: #ea1d21;
  color: #eeedec;
}

/* line 38, app/assets/stylesheets/_sections.scss */
.section-skills {
  background-color: #202f66;
  color: #eeedec;
}

/* line 43, app/assets/stylesheets/_sections.scss */
.section-projects {
  background-color: #141414;
  color: #eeedec;
}

/* line 4, app/assets/stylesheets/_notifications.scss */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
  z-index: 9999;
  max-width: 350px;
  animation: slide-in 0.3s ease-out forwards;
}

/* line 16, app/assets/stylesheets/_notifications.scss */
.notification.success {
  border-left: 4px solid #28a745;
}

/* line 20, app/assets/stylesheets/_notifications.scss */
.notification.error {
  border-left: 4px solid #dc3545;
}

/* line 24, app/assets/stylesheets/_notifications.scss */
.notification.fade-out {
  animation: fade-out 0.5s ease-out forwards;
}

/* line 28, app/assets/stylesheets/_notifications.scss */
.notification .notification-content {
  display: flex;
  align-items: center;
}

/* line 32, app/assets/stylesheets/_notifications.scss */
.notification .notification-content i {
  margin-right: 12px;
  font-size: 1.5rem;
}

/* line 36, app/assets/stylesheets/_notifications.scss */
.success .notification .notification-content i {
  color: #28a745;
}

/* line 40, app/assets/stylesheets/_notifications.scss */
.error .notification .notification-content i {
  color: #dc3545;
}

/* line 45, app/assets/stylesheets/_notifications.scss */
.notification .notification-content p {
  margin: 0;
  color: #202f66;
  font-size: 0.95rem;
  line-height: 1.4;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (max-width: 576px) {
  /* line 76, app/assets/stylesheets/_notifications.scss */
  .notification {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/* line 5, app/assets/stylesheets/_admin_experience.scss */
.admin-nav {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 9, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 16, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__item {
  margin-right: 1rem;
  padding: 1rem 1.5rem;
  position: relative;
}

/* line 21, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__item a {
  text-decoration: none;
  color: #202f66;
  font-weight: 500;
  transition: 0.3s ease;
}

/* line 28, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__item:hover a {
  color: #2b3f8a;
}

/* line 33, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__item.active a {
  color: #2b3f8a;
}

/* line 37, app/assets/stylesheets/_admin_experience.scss */
.admin-nav__item.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2b3f8a;
}

/* line 51, app/assets/stylesheets/_admin_experience.scss */
.admin-experience-container,
.admin-education-container {
  background-color: #f5f5f7;
  padding: 2rem 0;
  min-height: calc(100vh - 80px);
}

/* line 57, app/assets/stylesheets/_admin_experience.scss */
.admin-experience-container .container,
.admin-education-container .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 66, app/assets/stylesheets/_admin_experience.scss */
.experience-list__header,
.education-list__header {
  margin-bottom: 2rem;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  /* line 66, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__header,
.education-list__header {
    display: block;
  }
}

@media (min-width: 769px) {
  /* line 66, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__header,
.education-list__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* line 80, app/assets/stylesheets/_admin_experience.scss */
.experience-list__header h2,
.education-list__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.8rem;
}

/* line 86, app/assets/stylesheets/_admin_experience.scss */
.experience-list__header .subtitle,
.education-list__header .subtitle {
  color: #202f66;
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
}

/* line 92, app/assets/stylesheets/_admin_experience.scss */
.experience-list__header .btn-primary,
.education-list__header .btn-primary {
  background-color: #2b3f8a;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

/* line 101, app/assets/stylesheets/_admin_experience.scss */
.experience-list__header .btn-primary:hover,
.education-list__header .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 111, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group,
.education-list__group {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

/* line 118, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-header,
.education-list__group-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 125, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-header .logo,
.education-list__group-header .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  /* line 125, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__group-header .logo,
.education-list__group-header .logo {
    display: none;
  }
}

/* line 140, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-header .logo img,
.education-list__group-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 146, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-header .logo .no-logo,
.education-list__group-header .logo .no-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeedec;
  color: #202f66;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 500px) {
  /* line 146, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__group-header .logo .no-logo,
.education-list__group-header .logo .no-logo {
    display: none;
  }
}

/* line 163, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-header h3,
.education-list__group-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #eeedec !important;
}

/* line 170, app/assets/stylesheets/_admin_experience.scss */
.experience-list__group-items,
.education-list__group-items {
  padding: 1rem;
  padding-left: 16px;
  margin-left: 0;
}

/* line 178, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item,
.education-list__item {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* line 186, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item:last-child,
.education-list__item:last-child {
  margin-bottom: 0;
}

/* line 191, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item .kebab-menu,
.education-list__item .kebab-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

/* line 197, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item .kebab-menu .dot,
.education-list__item .kebab-menu .dot {
  background-color: #2b3f8a;
}

/* line 202, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body,
.education-list__item-body {
  flex: 1;
}

/* line 205, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body .position,
.education-list__item-body .position {
  font-weight: 600;
  font-size: 1.1rem;
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 212, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body .meta,
.education-list__item-body .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 220, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body .meta span,
.education-list__item-body .meta span {
  display: inline-flex;
  align-items: center;
}

/* line 224, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body .meta span:not(:last-child)::after,
.education-list__item-body .meta span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
}

/* line 231, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-body .description,
.education-list__item-body .description {
  color: #202f66;
  margin-bottom: 1.5rem;
}

/* line 237, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions,
.education-list__item-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* line 245, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn,
.education-list__item-actions .btn {
  flex: 1;
  display: block;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 0.25rem;
}

/* line 258, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn:first-child,
.education-list__item-actions .btn:first-child {
  margin-left: 0;
}

/* line 262, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn:last-child,
.education-list__item-actions .btn:last-child {
  margin-right: 0;
}

/* line 266, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-view,
.education-list__item-actions .btn-view {
  background-color: #2b3f8a;
  color: white;
}

/* line 270, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-view:hover,
.education-list__item-actions .btn-view:hover {
  background-color: #1f2d63;
}

/* line 275, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-edit,
.education-list__item-actions .btn-edit {
  background-color: white;
  color: #2b3f8a;
  border: 1px solid #2b3f8a;
}

/* line 280, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-edit:hover,
.education-list__item-actions .btn-edit:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 285, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-delete,
.education-list__item-actions .btn-delete {
  background-color: #ea1d21;
  color: white;
}

/* line 289, app/assets/stylesheets/_admin_experience.scss */
.experience-list__item-actions .btn-delete:hover,
.education-list__item-actions .btn-delete:hover {
  background-color: #c21215;
}

/* line 299, app/assets/stylesheets/_admin_experience.scss */
.alert {
  background-color: rgba(43, 63, 138, 0.1);
  border-left: 4px solid #2b3f8a;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* line 306, app/assets/stylesheets/_admin_experience.scss */
.alert p {
  margin: 0;
  color: #202f66;
}

@media (max-width: 768px) {
  /* line 316, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__header,
.education-list__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  /* line 322, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__item,
.education-list__item {
    flex-direction: column;
  }
  /* line 325, app/assets/stylesheets/_admin_experience.scss */
  .experience-list__item-actions,
.education-list__item-actions {
    flex-direction: row;
    margin-top: 1rem;
    justify-content: flex-start;
  }
}

/* line 335, app/assets/stylesheets/_admin_experience.scss */
.experience-detail,
.education-detail {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* line 342, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__header,
.education-detail__header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 349, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__header .logo,
.education-detail__header .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

/* line 360, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__header .logo img,
.education-detail__header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 366, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__header .logo .no-logo,
.education-detail__header .logo .no-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeedec;
  color: #202f66;
  font-weight: bold;
  font-size: 1.5rem;
}

/* line 379, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__header h2,
.education-detail__header h2 {
  margin: 0;
  font-size: 1.5rem;
}

/* line 385, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content,
.education-detail__content {
  padding: 1.5rem;
}

/* line 388, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group,
.education-detail__content .detail-group {
  margin-bottom: 1.5rem;
}

/* line 391, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group:last-child,
.education-detail__content .detail-group:last-child {
  margin-bottom: 0;
}

/* line 395, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group h3,
.education-detail__content .detail-group h3 {
  margin: 0 0 0.25rem 0;
  color: #202f66;
}

/* line 400, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group h4,
.education-detail__content .detail-group h4 {
  margin: 0 0 0.25rem 0;
  color: #202f66;
  font-size: 1.1rem;
}

/* line 406, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group p,
.education-detail__content .detail-group p {
  margin: 0;
}

/* line 409, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__content .detail-group p.date,
.education-detail__content .detail-group p.date {
  color: #202f66;
  font-size: 0.9rem;
}

/* line 417, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__actions,
.education-detail__actions {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* line 424, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__actions .btn,
.education-detail__actions .btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
}

/* line 429, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__actions .btn-edit,
.education-detail__actions .btn-edit {
  background-color: #2b3f8a;
  color: white;
}

/* line 434, app/assets/stylesheets/_admin_experience.scss */
.experience-detail__actions .btn-delete,
.education-detail__actions .btn-delete {
  background-color: #ea1d21;
  color: white;
}

/* line 443, app/assets/stylesheets/_admin_experience.scss */
.admin-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 451, app/assets/stylesheets/_admin_experience.scss */
.admin-container .admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 458, app/assets/stylesheets/_admin_experience.scss */
.admin-container .admin-header h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #202f66;
}

/* line 464, app/assets/stylesheets/_admin_experience.scss */
.admin-container .admin-header .header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 469, app/assets/stylesheets/_admin_experience.scss */
.admin-container .admin-header .btn-secondary {
  background-color: #eeedec;
  color: #202f66;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

/* line 478, app/assets/stylesheets/_admin_experience.scss */
.admin-container .admin-header .btn-secondary:hover {
  background-color: #d6d4d1;
}

/* line 5, app/assets/stylesheets/_projects_transition.scss */
.main-sections {
  display: block;
  opacity: 1;
  transition: opacity 0.8s ease;
}

/* line 11, app/assets/stylesheets/_projects_transition.scss */
#projects-section {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  min-height: 100vh;
  padding-top: 0;
  margin-top: 0;
}

/* line 19, app/assets/stylesheets/_projects_transition.scss */
#projects-section .section-projects__header {
  margin-top: 30px;
  padding-top: 0;
}

/* line 23, app/assets/stylesheets/_projects_transition.scss */
#projects-section .section-projects__header h2 {
  color: #eeedec;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  background-color: transparent;
  padding: 10px 70px;
  border-radius: 15px 50px 15px 50px;
  /* Trait supprimé pour harmoniser avec les autres sections */
}

/* line 36, app/assets/stylesheets/_projects_transition.scss */
#projects-section .section-projects__header .section-projects__subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* line 45, app/assets/stylesheets/_projects_transition.scss */
.section {
  transition: opacity 0.8s ease;
}

/* line 52, app/assets/stylesheets/_projects_transition.scss */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* line 60, app/assets/stylesheets/_projects_transition.scss */
.project-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

/* line 69, app/assets/stylesheets/_projects_transition.scss */
.project-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24), 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* line 75, app/assets/stylesheets/_projects_transition.scss */
.project-card__image {
  height: 200px;
  overflow: hidden;
}

/* line 79, app/assets/stylesheets/_projects_transition.scss */
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* line 86, app/assets/stylesheets/_projects_transition.scss */
.project-card__image .project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #2b3f8a;
  font-size: 3rem;
}

/* line 98, app/assets/stylesheets/_projects_transition.scss */
.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

/* line 102, app/assets/stylesheets/_projects_transition.scss */
.project-card__content {
  padding: 1.5rem;
}

/* line 106, app/assets/stylesheets/_projects_transition.scss */
.project-card__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #202f66;
  font-size: 1.2rem;
}

/* line 113, app/assets/stylesheets/_projects_transition.scss */
.project-card__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem;
}

/* line 119, app/assets/stylesheets/_projects_transition.scss */
.project-card__technologies .technology-tag {
  background-color: rgba(238, 237, 236, 0.1) !important;
  border: 1px solid rgba(238, 237, 236, 0.4) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(99, 172, 255, 0.3) !important;
  color: rgba(238, 237, 236, 0.7) !important;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* line 130, app/assets/stylesheets/_projects_transition.scss */
.project-card__description {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* line 136, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions {
  display: flex;
  gap: 0.5rem;
}

/* line 140, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn {
  padding: 0.25rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* line 149, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn i {
  margin-right: 0.25rem;
}

/* line 154, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 158, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 163, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn-secondary {
  background-color: #eeedec;
  color: #202f66;
}

/* line 167, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn-secondary:hover {
  background-color: #e2e0df;
}

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

/* line 187, app/assets/stylesheets/_projects_transition.scss */
.loading-spinner {
  text-align: center;
  padding: 3rem;
  color: #2b3f8a;
}

/* line 192, app/assets/stylesheets/_projects_transition.scss */
.loading-spinner i {
  margin-bottom: 1rem;
}

/* line 198, app/assets/stylesheets/_projects_transition.scss */
.error-message {
  text-align: center;
  padding: 3rem;
  color: #ea1d21;
}

/* line 5, app/assets/stylesheets/_admin_form.scss */
.experience-list__item {
  margin-bottom: 24px;
  padding: 24px;
}

/* line 8, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group {
  margin-bottom: 1.5rem;
}

/* line 11, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #202f66;
}

/* line 18, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group .hint {
  display: block;
  font-size: 0.85rem;
  color: rgba(32, 47, 102, 0.6);
  margin-top: 0.25rem;
}

/* line 25, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group input[type="text"],
.experience-list__item .form-group input[type="date"],
.experience-list__item .form-group input[type="url"],
.experience-list__item .form-group input[type="number"],
.experience-list__item .form-group select,
.experience-list__item .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 39, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group input[type="text"]:focus,
.experience-list__item .form-group input[type="date"]:focus,
.experience-list__item .form-group input[type="url"]:focus,
.experience-list__item .form-group input[type="number"]:focus,
.experience-list__item .form-group select:focus,
.experience-list__item .form-group textarea:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 45, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group input[type="text"]:disabled,
.experience-list__item .form-group input[type="date"]:disabled,
.experience-list__item .form-group input[type="url"]:disabled,
.experience-list__item .form-group input[type="number"]:disabled,
.experience-list__item .form-group select:disabled,
.experience-list__item .form-group textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* line 51, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* line 58, app/assets/stylesheets/_admin_form.scss */
.experience-list__item input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  color: #202f66;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 70, app/assets/stylesheets/_admin_form.scss */
.experience-list__item input[type="file"]::-webkit-file-upload-button {
  background-color: #2b3f8a;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 80, app/assets/stylesheets/_admin_form.scss */
.experience-list__item input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #1f2d63;
}

/* line 85, app/assets/stylesheets/_admin_form.scss */
.experience-list__item input[type="file"]:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 93, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .text-muted,
.experience-list__item .form-text {
  color: rgba(32, 47, 102, 0.7) !important;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

/* line 102, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

/* line 108, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .checkbox-group .checkbox-wrapper {
  display: inline-flex;
  align-items: center;
}

/* line 113, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .checkbox-group input[type="checkbox"] {
  margin-right: 0.25rem;
  width: auto;
}

/* line 118, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .checkbox-group label {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1rem;
  font-weight: 500;
}

/* line 127, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .date-group {
  display: flex;
  gap: 1rem;
}

/* line 131, app/assets/stylesheets/_admin_form.scss */
.experience-list__item .date-group .date-field {
  flex: 1;
}

/* line 138, app/assets/stylesheets/_admin_form.scss */
.activities-container {
  margin-top: 0.5rem;
}

/* line 143, app/assets/stylesheets/_admin_form.scss */
.activities-textarea {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  padding: 1rem !important;
  background-color: #f8f9fa !important;
  border-radius: 4px !important;
  border: 1px solid #e9ecef !important;
  width: 100% !important;
  color: #495057 !important;
  min-height: 120px !important;
}

/* line 156, app/assets/stylesheets/_admin_form.scss */
.date-group {
  display: flex;
  gap: 1rem;
}

/* line 160, app/assets/stylesheets/_admin_form.scss */
.date-group .date-field {
  flex: 1;
}

@media (max-width: 768px) {
  /* line 156, app/assets/stylesheets/_admin_form.scss */
  .date-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* line 171, app/assets/stylesheets/_admin_form.scss */
.location-group {
  display: flex;
  gap: 1rem;
}

/* line 175, app/assets/stylesheets/_admin_form.scss */
.location-group .location-field {
  flex: 1;
}

/* line 181, app/assets/stylesheets/_admin_form.scss */
.logo-preview {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* line 186, app/assets/stylesheets/_admin_form.scss */
.logo-preview img {
  max-width: 120px;
  max-height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  object-fit: contain;
}

/* line 195, app/assets/stylesheets/_admin_form.scss */
.logo-preview .no-logo {
  width: 120px;
  height: 120px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* line 204, app/assets/stylesheets/_admin_form.scss */
.logo-preview .no-logo img {
  max-width: 120px;
  max-height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  object-fit: contain;
}

/* line 213, app/assets/stylesheets/_admin_form.scss */
.logo-preview .no-logo .no-logo {
  width: 120px;
  height: 120px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(32, 47, 102, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  /* line 230, app/assets/stylesheets/_admin_form.scss */
  .experience-list__item .date-group,
.experience-list__item .location-group {
    flex-direction: column;
    gap: 1rem;
  }
}

/* line 6, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__links > a:not(.kebab-menu__button) {
  display: none !important;
}

/* line 10, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__links .navbar__separator {
  display: none !important;
}

/* line 15, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__links .kebab-menu {
  display: block;
}

/* line 19, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__links .kebab-menu__content a, body.admin .navbar__links .kebab-menu__content button {
  display: flex !important;
}

/* line 28, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__mobile > a {
  display: none !important;
}

/* line 33, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__mobile .kebab-menu.mobile-kebab {
  display: block;
}

/* line 37, app/assets/stylesheets/_admin_navbar.scss */
body.admin .navbar__mobile .kebab-menu.mobile-kebab .kebab-menu__content a, body.admin .navbar__mobile .kebab-menu.mobile-kebab .kebab-menu__content button {
  display: flex !important;
}

/* line 6, app/assets/stylesheets/_admin_education.scss */
.education-list__group {
  margin-bottom: 1.5rem;
}

/* line 9, app/assets/stylesheets/_admin_education.scss */
.education-list__group-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #2b3f8a;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

/* line 16, app/assets/stylesheets/_admin_education.scss */
.education-list__group-header .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeedec;
  color: #2b3f8a;
  font-size: 1.5rem;
}

/* line 29, app/assets/stylesheets/_admin_education.scss */
.education-list__group-header .logo i {
  font-size: 1.5rem;
}

/* line 38, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section {
  margin-top: 1rem;
}

/* line 41, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section h4 {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #202f66;
  font-size: 1rem;
}

/* line 48, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section .activities-content {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  color: #495057;
}

/* line 58, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section .activities-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* line 64, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section .activities-thumbnails .activity-thumbnail {
  flex: 0 0 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

/* line 73, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section .activities-thumbnails .activity-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* line 80, app/assets/stylesheets/_admin_education.scss */
.education-list__item-body .activities-section .activities-thumbnails .activity-thumbnail:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
  transition: all 0.2s ease;
  cursor: pointer;
}

/* line 6, app/assets/stylesheets/_admin_home.scss */
.home-section-list__header {
  margin-bottom: 2rem;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  /* line 6, app/assets/stylesheets/_admin_home.scss */
  .home-section-list__header {
    display: block;
  }
}

@media (min-width: 769px) {
  /* line 6, app/assets/stylesheets/_admin_home.scss */
  .home-section-list__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* line 20, app/assets/stylesheets/_admin_home.scss */
.home-section-list__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.8rem;
}

/* line 26, app/assets/stylesheets/_admin_home.scss */
.home-section-list__header .subtitle {
  color: #202f66;
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
}

/* line 32, app/assets/stylesheets/_admin_home.scss */
.home-section-list__header .header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 40, app/assets/stylesheets/_admin_home.scss */
.home-section-form-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* line 49, app/assets/stylesheets/_admin_home.scss */
.home-section-form__header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #2b3f8a;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

/* line 56, app/assets/stylesheets/_admin_home.scss */
.home-section-form__header .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(238, 237, 236, 0.2);
}

/* line 67, app/assets/stylesheets/_admin_home.scss */
.home-section-form__header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 73, app/assets/stylesheets/_admin_home.scss */
.home-section-form__header .logo .no-logo {
  font-size: 1.5rem;
  color: #eeedec;
}

/* line 79, app/assets/stylesheets/_admin_home.scss */
.home-section-form__header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #eeedec;
  margin: 0;
}

/* line 87, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content {
  padding: 1.5rem;
  position: relative;
}

/* line 91, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-section {
  margin-bottom: 1.5rem;
}

/* line 94, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #202f66;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

/* line 104, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group {
  margin-bottom: 1rem;
}

/* line 107, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #202f66;
}

/* line 114, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group input[type="text"],
.home-section-form__content .form-group input[type="email"],
.home-section-form__content .form-group input[type="number"],
.home-section-form__content .form-group input[type="date"],
.home-section-form__content .form-group textarea,
.home-section-form__content .form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(108, 117, 125, 0.3);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

/* line 127, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group input[type="text"]:focus,
.home-section-form__content .form-group input[type="email"]:focus,
.home-section-form__content .form-group input[type="number"]:focus,
.home-section-form__content .form-group input[type="date"]:focus,
.home-section-form__content .form-group textarea:focus,
.home-section-form__content .form-group select:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.1);
}

/* line 134, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* line 139, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .hint {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* line 146, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .current-image {
  margin: 0.5rem 0;
}

/* line 149, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .current-image .preview-image {
  max-width: 150px;
  max-height: 150px;
  border-radius: 4px;
  border: 1px solid rgba(108, 117, 125, 0.2);
  padding: 2px;
}

/* line 157, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .current-image p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* line 164, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .current-file {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(43, 63, 138, 0.05);
  border-radius: 4px;
}

/* line 170, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-group .current-file p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* line 177, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-check {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

/* line 182, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-check input[type="checkbox"] {
  margin-right: 0.25rem;
}

/* line 186, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-check .form-check-label {
  color: #202f66;
  font-weight: 500;
}

/* line 192, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 117, 125, 0.1);
}

/* line 200, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions .btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 207, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions .btn.btn-primary {
  background-color: #2b3f8a;
  color: white;
  border: none;
}

/* line 212, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions .btn.btn-primary:hover {
  background-color: #1f2d63;
}

/* line 217, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions .btn.btn-secondary {
  background-color: white;
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 222, app/assets/stylesheets/_admin_home.scss */
.home-section-form__content .form-actions .btn.btn-secondary:hover {
  background-color: rgba(108, 117, 125, 0.1);
}

/* line 232, app/assets/stylesheets/_admin_home.scss */
.admin-home-container {
  padding: 32px 0;
  background-color: #f5f5f7;
  min-height: calc(100vh - 150px);
}

/* line 237, app/assets/stylesheets/_admin_home.scss */
.admin-home-container .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 244, app/assets/stylesheets/_admin_home.scss */
.home-section-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  overflow: visible;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid #2b3f8a;
}

/* line 254, app/assets/stylesheets/_admin_home.scss */
.home-section-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 258, app/assets/stylesheets/_admin_home.scss */
.home-section-card.active-card {
  border-left-color: #ea1d21;
}

/* line 262, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header {
  padding: 1rem;
  padding-top: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

/* line 269, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 280, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 286, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-logo .no-logo {
  font-size: 1.5rem;
  color: #2b3f8a;
}

/* line 292, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info {
  flex: 1;
}

/* line 295, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  width: 100%;
}

/* line 302, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-title-container .section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #202f66;
  flex: 1;
}

/* line 308, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-title-container .section-title.active-title {
  color: #ea1d21;
}

/* line 313, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-title-container .actions-cell {
  margin-left: 1rem;
  position: static;
}

/* line 317, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-title-container .actions-cell .action-buttons {
  justify-content: flex-end;
}

/* line 323, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 328, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-meta .status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* line 335, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-meta .status-badge.active {
  background-color: rgba(234, 29, 33, 0.1);
  color: #ea1d21;
}

/* line 340, app/assets/stylesheets/_admin_home.scss */
.home-section-card__header .section-info .section-meta .status-badge.inactive {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

/* line 349, app/assets/stylesheets/_admin_home.scss */
.home-section-card__content {
  padding: 16px;
}

/* line 353, app/assets/stylesheets/_admin_home.scss */
.home-section-card .section-description {
  color: #2b3f8a !important;
  margin-top: 0.5rem;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  line-height: 1.6;
  font-size: 1rem;
  padding: 16px;
  max-height: none;
  display: block;
  width: 100%;
  word-wrap: break-word;
}

/* line 368, app/assets/stylesheets/_admin_home.scss */
.home-section-card__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}

/* line 381, app/assets/stylesheets/_admin_home.scss */
.action-button.activate:hover {
  color: #192450;
  transform: translateY(-2px);
}

/* line 388, app/assets/stylesheets/_admin_home.scss */
.js-activate-section {
  position: relative;
  z-index: 30;
}

/* line 394, app/assets/stylesheets/_admin_home.scss */
.section-preview {
  background-color: rgba(43, 63, 138, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* line 400, app/assets/stylesheets/_admin_home.scss */
.section-preview h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #202f66;
}

/* line 405, app/assets/stylesheets/_admin_home.scss */
.section-preview h3.active-title {
  color: #ea1d21;
}

/* line 410, app/assets/stylesheets/_admin_home.scss */
.section-preview .preview-container {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 417, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 422, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text {
  flex: 1;
}

/* line 425, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text h1 {
  font-size: 1.8rem;
  color: #202f66;
  margin-bottom: 0.5rem;
}

/* line 431, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text p {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* line 436, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text .buttons {
  display: flex;
  gap: 0.5rem;
}

/* line 440, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text .buttons .btn {
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* line 445, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text .buttons .btn.btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 450, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__text .buttons .btn.btn-outline {
  border: 1px solid #2b3f8a;
  color: #2b3f8a;
}

/* line 458, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

/* line 464, app/assets/stylesheets/_admin_home.scss */
.section-preview .section-home__content .section-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 474, app/assets/stylesheets/_admin_home.scss */
.detail-info {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* line 481, app/assets/stylesheets/_admin_home.scss */
.detail-info .info-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #202f66;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
  padding-bottom: 0.5rem;
}

/* line 490, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item {
  display: flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(108, 117, 125, 0.05);
}

/* line 496, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item:last-child {
  border-bottom: none;
}

/* line 500, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item .detail-label {
  width: 180px;
  font-weight: 500;
  color: #202f66;
}

/* line 506, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item .detail-value {
  flex: 1;
  color: #6c757d;
}

/* line 510, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item .detail-value.blue-text {
  color: #2b3f8a;
}

/* line 519, app/assets/stylesheets/_admin_home.scss */
.detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* line 524, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn {
  padding: 0.25rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 532, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn i {
  font-size: 0.9rem;
}

/* line 536, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn.btn-back {
  background-color: #6c757d;
  color: white;
}

/* line 541, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn.btn-edit {
  background-color: #2b3f8a;
  color: white;
}

/* line 546, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn.btn-delete {
  background-color: #ea1d21;
  color: white;
}

/* line 554, app/assets/stylesheets/_admin_home.scss */
.home-section-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  width: 100%;
}

/* line 563, app/assets/stylesheets/_admin_home.scss */
.inline-form {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* line 571, app/assets/stylesheets/_admin_home.scss */
.inline-button-form {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* line 578, app/assets/stylesheets/_admin_home.scss */
.inline-button-form .animated-action-button {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* line 589, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state .icon {
  font-size: 3rem;
  color: rgba(43, 63, 138, 0.3);
  margin-bottom: 1rem;
}

/* line 595, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state h3 {
  font-size: 1.2rem;
  color: #202f66;
  margin-bottom: 0.5rem;
}

/* line 601, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state p {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* line 606, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  border-radius: 4px;
  background-color: #2b3f8a;
  color: white;
  text-decoration: none;
}

/* line 616, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state .btn i {
  font-size: 0.9rem;
}

/* line 4, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* line 11, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__header {
  background-color: #c7cfed;
  padding: 1rem;
  border-bottom: 1px solid #e5e9f2;
}

/* line 16, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #202f66;
}

/* line 24, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content {
  padding: 1.5rem;
}

/* line 27, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content .form-group {
  margin-bottom: 1.5rem;
}

/* line 30, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #202f66;
}

/* line 37, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content .form-group .form-control {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 46, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content .form-group .form-control:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 53, app/assets/stylesheets/_admin_profile.scss */
.admin-form-section__content .form-group .form-hint {
  display: block;
  font-size: 0.85rem;
  color: rgba(32, 47, 102, 0.6);
  margin-top: 0.25rem;
}

/* line 63, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 70, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

/* line 83, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
  border: none;
}

/* line 88, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions .btn-primary:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
}

/* line 94, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions .btn-secondary {
  background-color: white;
  color: #202f66;
  border: 1px solid rgba(32, 47, 102, 0.2);
}

/* line 99, app/assets/stylesheets/_admin_profile.scss */
.admin-form-actions .btn-secondary:hover {
  background-color: rgba(32, 47, 102, 0.05);
  border-color: rgba(32, 47, 102, 0.3);
}

/* line 5, app/assets/stylesheets/_home_sections.scss */
.current-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(32, 47, 102, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin: 0.5rem 0;
}

/* line 14, app/assets/stylesheets/_home_sections.scss */
.current-file .current-file-name {
  margin: 0;
  font-weight: 500;
  color: #202f66;
}

/* line 20, app/assets/stylesheets/_home_sections.scss */
.current-file .file-delete-option {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* line 25, app/assets/stylesheets/_home_sections.scss */
.current-file .file-delete-option .form-check-input {
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  /* line 5, app/assets/stylesheets/_home_sections.scss */
  .current-file {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 34, app/assets/stylesheets/_home_sections.scss */
  .current-file .file-delete-option {
    margin-top: 0.25rem;
  }
}

/* line 40, app/assets/stylesheets/_home_sections.scss */
.home-section-list {
  margin-top: 1.5rem;
}

/* line 43, app/assets/stylesheets/_home_sections.scss */
.home-section-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* line 49, app/assets/stylesheets/_home_sections.scss */
.home-section-list__header h2 {
  margin: 0;
  color: #2b3f8a;
}

/* line 55, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* line 62, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 69, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* line 79, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .logo i {
  font-size: 1.5rem;
  color: #2b3f8a;
}

/* line 84, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* line 92, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title {
  flex: 1;
}

/* line 95, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* line 100, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title .meta {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

/* line 105, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title .meta .status-badge {
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 12px;
}

/* line 110, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title .meta .status-badge.active {
  background-color: #4CAF50;
  color: white;
}

/* line 115, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-header .title .meta .status-badge.inactive {
  background-color: #F44336;
  color: white;
}

/* line 124, app/assets/stylesheets/_home_sections.scss */
.home-section-list__group-items {
  padding: 1rem;
}

/* line 131, app/assets/stylesheets/_home_sections.scss */
.detail-info {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* line 137, app/assets/stylesheets/_home_sections.scss */
.detail-info .info-title {
  color: #202f66;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* line 144, app/assets/stylesheets/_home_sections.scss */
.detail-info .details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

/* line 150, app/assets/stylesheets/_home_sections.scss */
.detail-info .detail-item {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
}

/* line 155, app/assets/stylesheets/_home_sections.scss */
.detail-info .detail-item:last-child {
  border-bottom: none;
}

/* line 159, app/assets/stylesheets/_home_sections.scss */
.detail-info .detail-item .detail-label {
  width: 200px;
  font-weight: 600;
  color: #6c757d;
}

/* line 165, app/assets/stylesheets/_home_sections.scss */
.detail-info .detail-item .detail-value {
  flex: 1;
}

/* line 168, app/assets/stylesheets/_home_sections.scss */
.detail-info .detail-item .detail-value.blue-text {
  color: #2b3f8a;
}

/* line 176, app/assets/stylesheets/_home_sections.scss */
.home-section-image {
  margin-bottom: 1rem;
}

/* line 179, app/assets/stylesheets/_home_sections.scss */
.home-section-image .image-title {
  color: #202f66;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* line 186, app/assets/stylesheets/_home_sections.scss */
.home-section-image .image-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/* line 195, app/assets/stylesheets/_home_sections.scss */
.home-section-image .image-container img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 4px;
}

/* line 202, app/assets/stylesheets/_home_sections.scss */
.home-section-image .image-container .no-image {
  color: #6c757d;
  font-style: italic;
}

/* line 4, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 19, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 24, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__container {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* line 34, app/assets/stylesheets/_delete_modal.scss */
.active .delete-confirmation-modal__container {
  transform: translateY(0);
}

/* line 39, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__header {
  padding: 1rem 1.5rem;
  background-color: #2b3f8a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 47, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 53, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__header .close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* line 62, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__header .close-modal:hover {
  opacity: 0.8;
}

/* line 68, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__body {
  padding: 1.5rem;
}

/* line 71, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__body p {
  font-weight: 500;
  font-size: 1rem;
  color: #2b3f8a;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* line 79, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__body .text-muted {
  color: #2b3f8a;
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* line 86, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__body .warning-message {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2b3f8a;
  margin-bottom: 1rem;
}

/* line 93, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__body .warning-details {
  color: #2b3f8a;
  opacity: 0.8;
  margin: 0;
}

/* line 100, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* line 107, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer .btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

/* line 115, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer .btn-secondary {
  background-color: white;
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 120, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer .btn-secondary:hover {
  background-color: rgba(108, 117, 125, 0.1);
  color: #202f66;
}

/* line 126, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer .btn-danger {
  background-color: #ea1d21;
  color: white;
  border: none;
}

/* line 131, app/assets/stylesheets/_delete_modal.scss */
.delete-confirmation-modal__footer .btn-danger:hover {
  background-color: #c21215;
}

@media (max-width: 576px) {
  /* line 142, app/assets/stylesheets/_delete_modal.scss */
  .delete-confirmation-modal__container {
    width: 95%;
  }
  /* line 146, app/assets/stylesheets/_delete_modal.scss */
  .delete-confirmation-modal__footer {
    flex-direction: column;
  }
  /* line 149, app/assets/stylesheets/_delete_modal.scss */
  .delete-confirmation-modal__footer .btn {
    width: 100%;
    text-align: center;
  }
}

/* line 4, app/assets/stylesheets/_education.scss */
.section-education {
  position: relative;
}

/* line 7, app/assets/stylesheets/_education.scss */
.section-education__header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* line 13, app/assets/stylesheets/_education.scss */
.section-education__header h2 {
  display: inline-block;
  color: #dadada !important;
  margin-bottom: 0 !important;
  font-size: clamp(30px, 10vw, 150px) !important;
  font-weight: 700;
  font-family: "gibson", "canada-type-gibson", "Changa One", "Arial Black", "Arial Bold", sans-serif;
  letter-spacing: clamp(0.5px, 0.1vw, 1px) !important;
  line-height: 1.1 !important;
  font-style: normal;
  white-space: nowrap;
  padding: 0 !important;
}

/* line 28, app/assets/stylesheets/_education.scss */
.section-education__header .section-subtitle {
  font-size: 1.2rem;
  color: #eeedec;
  font-weight: 300;
  margin-top: 1rem;
}

/* line 37, app/assets/stylesheets/_education.scss */
.section-education__timeline {
  position: relative;
  top: calc(1.5rem + 10px);
}

/* line 41, app/assets/stylesheets/_education.scss */
.section-education__timeline::before {
  content: '';
  position: absolute;
  top: -25px;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: rgba(238, 237, 236, 0.3);
  z-index: 1;
}

@media (max-width: 768px) {
  /* line 41, app/assets/stylesheets/_education.scss */
  .section-education__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  /* line 41, app/assets/stylesheets/_education.scss */
  .section-education__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* line 62, app/assets/stylesheets/_education.scss */
.section-education__timeline::after {
  background-color: rgba(43, 63, 138, 0.3);
}

/* line 67, app/assets/stylesheets/_education.scss */
.section-education__content {
  position: relative;
  z-index: 1;
}

/* line 72, app/assets/stylesheets/_education.scss */
.section-education .alert {
  background-color: rgba(32, 47, 102, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: rgba(32, 47, 102, 0.7);
  margin: 1.5rem auto;
  max-width: 600px;
}

@keyframes slideInRight {
  from {
    transform: translateX(300px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(300px);
    opacity: 0;
  }
}

@keyframes slideInRightMobile {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRightMobile {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-300px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-300px);
    opacity: 0;
  }
}

@keyframes slideInLeftMobile {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeftMobile {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100px);
    opacity: 0;
  }
}

/* line 176, app/assets/stylesheets/_education.scss */
.section-education .school-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease;
  transform: translateX(-300px);
}

/* line 191, app/assets/stylesheets/_education.scss */
.section-education .school-card.animate-in {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* line 195, app/assets/stylesheets/_education.scss */
.section-education .school-card.animate-out {
  animation: slideOutLeft 0.8s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@media (max-width: 675px) {
  /* line 176, app/assets/stylesheets/_education.scss */
  .section-education .school-card {
    transform: translateX(-100px);
  }
  /* line 202, app/assets/stylesheets/_education.scss */
  .section-education .school-card.animate-in {
    animation: slideInLeftMobile 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  /* line 206, app/assets/stylesheets/_education.scss */
  .section-education .school-card.animate-out {
    animation: slideOutLeftMobile 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
  }
}

/* line 211, app/assets/stylesheets/_education.scss */
.section-education .school-card__header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #2b3f8a;
  color: #eeedec;
  border-bottom: 1px solid rgba(32, 47, 102, 0.1);
  border-radius: 12px 12px 0 0;
  position: relative;
  position: relative;
}

/* line 221, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  padding: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

/* line 237, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo:hover {
  transform: scale(1.05);
}

/* line 241, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 247, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo .logo-placeholder.large {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: bold;
  color: #2b3f8a;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* line 263, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .school-name h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #eeedec !important;
}

/* line 274, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo, .section-education .school-card__header .school-name {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* line 279, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo:hover ~ .logo-preview, .section-education .school-card__header .logo:focus ~ .logo-preview, .section-education .school-card__header .school-name:hover ~ .logo-preview, .section-education .school-card__header .school-name:focus ~ .logo-preview {
  opacity: 1;
  visibility: visible;
}

/* line 286, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  margin: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  border-radius: 12px;
}

/* line 304, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* line 309, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo-preview img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* line 327, app/assets/stylesheets/_education.scss */
.section-education .school-card__body {
  padding: 0;
}

/* line 332, app/assets/stylesheets/_education.scss */
.section-education .education-item {
  position: relative;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.05);
}

/* line 337, app/assets/stylesheets/_education.scss */
.section-education .education-item:last-child {
  border-bottom: none;
}

/* line 341, app/assets/stylesheets/_education.scss */
.section-education .education-item:hover {
  background-color: rgba(32, 47, 102, 0.01);
}

/* line 346, app/assets/stylesheets/_education.scss */
.section-education .education-item::before {
  content: '';
  position: absolute;
  top: calc(1.5rem + 10px);
  left: -30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2b3f8a;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  /* line 346, app/assets/stylesheets/_education.scss */
  .section-education .education-item::before {
    content: none;
  }
}

/* line 365, app/assets/stylesheets/_education.scss */
.section-education .education-item__header {
  margin-bottom: 1rem;
}

/* line 368, app/assets/stylesheets/_education.scss */
.section-education .education-item__header .degree {
  font-weight: 700;
  font-size: 1.2rem;
  color: #202f66;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  margin: 0 0 0.25rem 0;
  color: #202f66;
}

/* line 378, app/assets/stylesheets/_education.scss */
.section-education .education-item__header .field-of-study {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* line 390, app/assets/stylesheets/_education.scss */
.section-education .education-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 398, app/assets/stylesheets/_education.scss */
.section-education .education-item__meta .dates, .section-education .education-item__meta .result {
  display: flex;
  align-items: center;
}

/* line 402, app/assets/stylesheets/_education.scss */
.section-education .education-item__meta .dates i, .section-education .education-item__meta .result i {
  margin-right: 0.25rem;
  color: #2b3f8a;
}

/* line 409, app/assets/stylesheets/_education.scss */
.section-education .education-item__description {
  color: rgba(32, 47, 102, 0.9);
  margin-bottom: 1rem;
}

/* line 413, app/assets/stylesheets/_education.scss */
.section-education .education-item__description p {
  margin-bottom: 0.5rem;
}

/* line 416, app/assets/stylesheets/_education.scss */
.section-education .education-item__description p:last-child {
  margin-bottom: 0;
}

/* line 421, app/assets/stylesheets/_education.scss */
.section-education .education-item__description ul {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 425, app/assets/stylesheets/_education.scss */
.section-education .education-item__description ul li {
  margin-bottom: 0.25rem;
}

/* line 431, app/assets/stylesheets/_education.scss */
.section-education .education-item__activities {
  margin-top: 1rem;
}

/* line 434, app/assets/stylesheets/_education.scss */
.section-education .education-item__activities .activities-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: #202f66;
}

/* line 441, app/assets/stylesheets/_education.scss */
.section-education .education-item__activities .activities-content {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.5rem;
  background-color: rgba(32, 47, 102, 0.05);
  border-radius: 4px;
}

/* line 450, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma {
  margin-top: 1rem;
}

/* line 453, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id, .section-education .education-item__diploma .diploma-url {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

/* line 458, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id:last-child, .section-education .education-item__diploma .diploma-url:last-child {
  margin-bottom: 0;
}

/* line 462, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id i, .section-education .education-item__diploma .diploma-url i {
  margin-right: 0.25rem;
  color: #2b3f8a;
}

/* line 469, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id span {
  color: #ea1d21;
}

/* line 473, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id i {
  color: #ea1d21;
}

/* line 478, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .certificate-link {
  color: #2b3f8a;
  text-decoration: none;
}

/* line 482, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .certificate-link:hover {
  text-decoration: underline;
}

/* line 488, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* line 494, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: white;
}

/* line 503, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item::before {
  content: '';
  display: block;
  padding-top: 70.7%;
}

/* line 509, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item .a4-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
  background-color: rgba(43, 63, 138, 0.1);
  transition: transform 0.3s ease;
}

/* line 521, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item .image-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 47, 102, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 534, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item .image-preview-overlay i {
  color: white;
  font-size: 1.5rem;
}

/* line 541, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item:hover .a4-thumbnail {
  transform: scale(1.02);
}

/* line 545, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item:hover .image-preview-overlay {
  opacity: 1;
}

/* line 553, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 47, 102, 0.9);
}

/* line 563, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal.show {
  display: block;
  animation: fadeIn 0.3s;
}

/* line 568, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* line 581, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal__content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid rgba(43, 63, 138, 0.1);
  animation: zoomIn 0.3s;
}

/* line 590, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal__content .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(32, 47, 102, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

/* line 607, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal__content .close-modal:hover {
  color: white;
  background-color: #ea1d21;
}

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

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  /* line 629, app/assets/stylesheets/_education.scss */
  .school-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 634, app/assets/stylesheets/_education.scss */
  .school-card__header {
    flex-direction: column;
    text-align: center;
  }
  /* line 638, app/assets/stylesheets/_education.scss */
  .school-card__header .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* line 8, app/assets/stylesheets/_skills.scss */
.experience-list__item .logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  float: left;
}

/* line 17, app/assets/stylesheets/_skills.scss */
.experience-list__item .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 23, app/assets/stylesheets/_skills.scss */
.experience-list__item .logo .no-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(32, 47, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #202f66;
  font-weight: 700;
  font-size: 1.2rem;
}

/* line 40, app/assets/stylesheets/_skills.scss */
.soft-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 45, app/assets/stylesheets/_skills.scss */
.soft-skills-list .soft-skill-item {
  background-color: white;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

/* line 55, app/assets/stylesheets/_skills.scss */
.soft-skills-list .soft-skill-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 59, app/assets/stylesheets/_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-name {
  font-weight: 500;
  color: #202f66;
}

/* line 64, app/assets/stylesheets/_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 72, app/assets/stylesheets/_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .btn-sm {
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
}

/* line 81, app/assets/stylesheets/_skills.scss */
.experience-detail {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* line 87, app/assets/stylesheets/_skills.scss */
.experience-detail__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 1.5rem;
}

/* line 93, app/assets/stylesheets/_skills.scss */
.experience-detail__header h2 {
  margin-bottom: 0;
  color: #2b3f8a;
  font-size: 1.75rem;
  font-weight: 600;
}

/* line 101, app/assets/stylesheets/_skills.scss */
.experience-detail__content {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  background-color: white;
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  /* line 101, app/assets/stylesheets/_skills.scss */
  .experience-detail__content {
    flex-direction: column;
  }
}

/* line 113, app/assets/stylesheets/_skills.scss */
.experience-detail__logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 120, app/assets/stylesheets/_skills.scss */
.experience-detail__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 126, app/assets/stylesheets/_skills.scss */
.experience-detail__logo .no-logo {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61dafb;
  font-weight: 700;
  font-size: 2.5rem;
}

/* line 140, app/assets/stylesheets/_skills.scss */
.experience-detail__info {
  flex: 1;
}

/* line 143, app/assets/stylesheets/_skills.scss */
.experience-detail__info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #2b3f8a;
  font-weight: 600;
}

/* line 151, app/assets/stylesheets/_skills.scss */
.experience-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 157, app/assets/stylesheets/_skills.scss */
.experience-detail__meta .meta-item {
  background-color: rgba(43, 63, 138, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* line 162, app/assets/stylesheets/_skills.scss */
.experience-detail__meta .meta-item .meta-label {
  font-weight: 500;
  margin-right: 0.25rem;
}

/* line 167, app/assets/stylesheets/_skills.scss */
.experience-detail__meta .meta-item .meta-value {
  color: rgba(32, 47, 102, 0.8);
}

/* line 174, app/assets/stylesheets/_skills.scss */
.experience-detail__description h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* line 179, app/assets/stylesheets/_skills.scss */
.experience-detail__description p {
  color: rgba(32, 47, 102, 0.8);
  line-height: 1.6;
}

/* line 184, app/assets/stylesheets/_skills.scss */
.experience-detail .meta-info {
  margin: 1rem 0;
  font-size: 0.95rem;
}

/* line 188, app/assets/stylesheets/_skills.scss */
.experience-detail .meta-info .meta-label {
  font-weight: 500;
  color: #2b3f8a;
}

/* line 193, app/assets/stylesheets/_skills.scss */
.experience-detail .meta-info .meta-value {
  color: rgba(32, 47, 102, 0.8);
}

/* line 197, app/assets/stylesheets/_skills.scss */
.experience-detail .meta-info .separator {
  margin: 0 0.5rem;
  color: rgba(32, 47, 102, 0.4);
}

/* line 203, app/assets/stylesheets/_skills.scss */
.experience-detail .description-section {
  margin-top: 1rem;
}

/* line 206, app/assets/stylesheets/_skills.scss */
.experience-detail .description-section h4 {
  color: #2b3f8a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* line 213, app/assets/stylesheets/_skills.scss */
.experience-detail .description-section p {
  color: rgba(32, 47, 102, 0.8);
  line-height: 1.6;
}

/* line 222, app/assets/stylesheets/_skills.scss */
.experience-form .file-upload-wrapper {
  position: relative;
  margin-bottom: 0.5rem;
}

/* line 226, app/assets/stylesheets/_skills.scss */
.experience-form .file-upload-wrapper .file-upload {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* line 237, app/assets/stylesheets/_skills.scss */
.experience-form .file-upload-wrapper .file-upload-info {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

/* line 244, app/assets/stylesheets/_skills.scss */
.experience-form .file-upload-wrapper .file-upload-info .file-upload-btn {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  border-right: 1px solid #ddd;
  font-weight: 500;
}

/* line 251, app/assets/stylesheets/_skills.scss */
.experience-form .file-upload-wrapper .file-upload-info .file-upload-text {
  padding: 0.5rem 1rem;
  color: rgba(32, 47, 102, 0.7);
  flex: 1;
}

/* line 259, app/assets/stylesheets/_skills.scss */
.experience-form .current-logo {
  margin-top: 1rem;
}

/* line 262, app/assets/stylesheets/_skills.scss */
.experience-form .current-logo p {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* line 267, app/assets/stylesheets/_skills.scss */
.experience-form .current-logo .logo-preview {
  max-width: 100px;
  max-height: 100px;
  border: 1px solid #ddd;
  padding: 0.25rem;
  border-radius: 4px;
}

/* line 5, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 10, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* line 16, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* line 22, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item__header h3 {
  margin: 0;
  color: #2b3f8a;
  font-size: 1.2rem;
  font-weight: 600;
}

/* line 29, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item__header .skill-count {
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* line 37, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item__header .skill-group-actions {
  display: flex;
  gap: 0.25rem;
}

/* line 43, app/assets/stylesheets/_skill_groups.scss */
.skill-groups-list .skill-group-item__description {
  color: rgba(32, 47, 102, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 61, app/assets/stylesheets/_skill_groups.scss */
.admin-experience-container .experience-detail .description-section h4,
.admin-experience-container .experience-detail .experience-detail__skills h4 {
  font-size: 1.3rem;
  color: #2b3f8a;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* line 72, app/assets/stylesheets/_skill_groups.scss */
.skill-group-title-band {
  background-color: #2b3f8a;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 82, app/assets/stylesheets/_skill_groups.scss */
.skill-group-title-band h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

/* line 90, app/assets/stylesheets/_skill_groups.scss */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* line 96, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

/* line 104, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__logo {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}

/* line 109, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 115, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__logo .no-logo {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61dafb;
  font-weight: 700;
  font-size: 1.5rem;
}

/* line 129, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__info {
  flex: 1;
}

/* line 132, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__info h5 {
  margin: 0 0 0.25rem 0;
  color: #2b3f8a;
  font-size: 1rem;
  font-weight: 600;
}

/* line 140, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__meta {
  font-size: 0.85rem;
  color: rgba(32, 47, 102, 0.7);
  margin-bottom: 0.5rem;
}

/* line 146, app/assets/stylesheets/_skill_groups.scss */
.skills-grid .skill-card__actions {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-end;
}

/* line 155, app/assets/stylesheets/_skill_groups.scss */
.experience-list__group-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #2b3f8a;
  color: white;
}

/* line 162, app/assets/stylesheets/_skill_groups.scss */
.experience-list__group-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: white !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 171, app/assets/stylesheets/_skill_groups.scss */
.experience-list__group-header .group-actions {
  display: flex;
  gap: 0.25rem;
}

/* line 178, app/assets/stylesheets/_skill_groups.scss */
.form-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(32, 47, 102, 0.2);
  border-radius: 4px;
  background-color: white;
  font-size: 1rem;
  color: #202f66;
}

/* line 187, app/assets/stylesheets/_skill_groups.scss */
.form-select:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 194, app/assets/stylesheets/_skill_groups.scss */
.add-group-link {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

/* line 198, app/assets/stylesheets/_skill_groups.scss */
.add-group-link a {
  color: #2b3f8a;
  text-decoration: none;
}

/* line 202, app/assets/stylesheets/_skill_groups.scss */
.add-group-link a:hover {
  text-decoration: underline;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.5);
    opacity: 0;
  }
}

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

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

/* line 46, app/assets/stylesheets/_public_skills.scss */
.section-skills {
  background-color: #eeedec;
  overflow: visible;
  padding-bottom: 60px;
}

/* line 51, app/assets/stylesheets/_public_skills.scss */
.section-skills__header {
  margin-bottom: 0 !important;
  text-align: center;
}

/* line 55, app/assets/stylesheets/_public_skills.scss */
.section-skills__header h2 {
  display: inline-block;
  color: #dadada !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  font-size: clamp(30px, 10vw, 150px) !important;
  font-weight: 700;
  font-family: "gibson", "canada-type-gibson", "Changa One", "Arial Black", "Arial Bold", sans-serif;
  letter-spacing: clamp(0.5px, 0.1vw, 1px) !important;
  line-height: 0.9 !important;
  font-style: normal;
  white-space: nowrap;
  padding: 0 !important;
}

/* line 72, app/assets/stylesheets/_public_skills.scss */
.section-skills__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

/* line 80, app/assets/stylesheets/_public_skills.scss */
.skills-group {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: visible;
  transition: 0.3s ease;
  transform: scale(0.5);
  opacity: 0;
  position: relative;
  margin-bottom: 60px;
}

/* line 91, app/assets/stylesheets/_public_skills.scss */
.skills-group.animate-in {
  animation: zoomIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  z-index: 1;
}

/* line 96, app/assets/stylesheets/_public_skills.scss */
.skills-group.animate-out {
  animation: zoomOut 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

/* line 100, app/assets/stylesheets/_public_skills.scss */
.skills-group:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

/* line 106, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group {
  transform: scale(1);
  opacity: 0;
  z-index: 1;
  background-color: transparent;
  box-shadow: none;
  padding-top: 0;
  margin-top: 1rem;
}

/* line 115, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group.animate-in {
  animation: fadeIn 1.2s ease forwards;
}

/* line 119, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group.animate-out {
  animation: fadeOut 0.8s ease forwards;
}

/* line 123, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group:hover {
  transform: none;
  box-shadow: none;
}

/* line 129, app/assets/stylesheets/_public_skills.scss */
.skills-group__header {
  background-color: #2b3f8a;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px 12px 0 0 !important;
}

/* line 135, app/assets/stylesheets/_public_skills.scss */
.skills-group__header h3 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

/* line 140, app/assets/stylesheets/_public_skills.scss */
.skills-group__header__description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* line 147, app/assets/stylesheets/_public_skills.scss */
.skills-group__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: visible;
  min-height: 280px;
}

/* line 158, app/assets/stylesheets/_public_skills.scss */
.skill-item {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  will-change: transform, box-shadow;
}

/* line 176, app/assets/stylesheets/_public_skills.scss */
.skill-item::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  background-image: var(--ghost-image, none);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.07;
  transform: rotate(-10deg) scale(1.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

/* line 196, app/assets/stylesheets/_public_skills.scss */
.skill-item:hover:not(.active) {
  transform: translateY(-10px) scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* line 202, app/assets/stylesheets/_public_skills.scss */
.skill-item.active {
  position: absolute;
  height: auto;
  min-height: 300px;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease-out;
  overflow: visible;
}

/* line 215, app/assets/stylesheets/_public_skills.scss */
.skill-item.active::before {
  opacity: 0;
  transform: translateY(50px) rotate(-20deg) scale(0.8);
}

/* line 221, app/assets/stylesheets/_public_skills.scss */
.skill-item.active .skill-description {
  display: block;
  max-height: 500px;
  opacity: 1;
  transition: all 0.25s ease-out;
  margin-top: 15px;
  padding: 10px;
  background-color: rgba(249, 249, 249, 0.9);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #202f66;
  line-height: 1.5;
  will-change: opacity, max-height;
}

/* line 238, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* line 247, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.25s ease-out;
  will-change: transform, filter;
}

/* line 255, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo--placeholder {
  background-color: rgba(43, 63, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 262, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo--placeholder span {
  font-size: 2rem;
  font-weight: 700;
  color: #2b3f8a;
}

/* line 270, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-name {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #2b3f8a;
  font-weight: 600;
  text-align: center;
}

/* line 278, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-experience {
  margin-top: 0.5rem;
}

/* line 281, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-experience__text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #202f66;
  background-color: rgba(43, 63, 138, 0.1);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}

/* line 292, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-description {
  font-size: 0.9rem;
  color: #202f66;
  margin: 1rem 0;
  line-height: 1.5;
  background-color: rgba(43, 63, 138, 0.05);
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
}

/* line 305, app/assets/stylesheets/_public_skills.scss */
.soft-skills-group {
  margin-top: 2rem;
}

/* line 310, app/assets/stylesheets/_public_skills.scss */
.soft-skills-canvas-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background-color: #eeedec;
  border-radius: 12px;
}

/* line 320, app/assets/stylesheets/_public_skills.scss */
.soft-skills-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* line 328, app/assets/stylesheets/_public_skills.scss */
.soft-skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
}

/* line 335, app/assets/stylesheets/_public_skills.scss */
.soft-skill-item {
  background-color: rgba(43, 63, 138, 0.1);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  transition: 0.2s ease;
}

/* line 341, app/assets/stylesheets/_public_skills.scss */
.soft-skill-item:hover {
  background-color: rgba(43, 63, 138, 0.2);
  transform: translateY(-2px);
}

/* line 346, app/assets/stylesheets/_public_skills.scss */
.soft-skill-item .soft-skill-name {
  font-weight: 500;
  color: #2b3f8a;
}

/* line 354, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 360, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags a {
  text-decoration: none;
  color: #2b3f8a;
  font-weight: 500;
  transition: 0.2s ease;
}

/* line 366, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags a:hover {
  color: #192450;
  text-decoration: none;
}

@media (max-width: 768px) {
  /* line 375, app/assets/stylesheets/_public_skills.scss */
  .skills-group__items {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  /* line 379, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-container {
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  /* line 385, app/assets/stylesheets/_public_skills.scss */
  .skills-group__items {
    grid-template-columns: 1fr;
  }
}

/* line 5, app/assets/stylesheets/_soft_skills.scss */
.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  color: #202f66;
}

/* line 18, app/assets/stylesheets/_soft_skills.scss */
.btn-icon:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 22, app/assets/stylesheets/_soft_skills.scss */
.btn-icon.btn-edit {
  color: #2b3f8a;
}

/* line 24, app/assets/stylesheets/_soft_skills.scss */
.btn-icon.btn-edit:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 29, app/assets/stylesheets/_soft_skills.scss */
.btn-icon.btn-delete {
  color: #ea1d21;
}

/* line 31, app/assets/stylesheets/_soft_skills.scss */
.btn-icon.btn-delete:hover {
  background-color: rgba(234, 29, 33, 0.1);
}

/* line 36, app/assets/stylesheets/_soft_skills.scss */
.btn-icon i {
  font-size: 1.2rem;
}

/* line 42, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  width: 100%;
}

/* line 48, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  min-width: 0;
}

@media (max-width: 390px) {
  /* line 48, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item {
    padding: 0.5rem;
  }
}

/* line 66, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* line 71, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-name {
  font-weight: 500;
  color: #202f66;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 390px) {
  /* line 71, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-name {
    max-width: 200px;
  }
}

@media (max-width: 320px) {
  /* line 71, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-name {
    max-width: 160px;
  }
}

/* line 88, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(32, 47, 102, 0.1);
  padding-left: 1rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none !important;
}

/* line 99, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .normal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 105, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions {
  display: none;
  position: relative;
  flex-shrink: 0;
}

/* line 110, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(32, 47, 102, 0.05);
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 30;
}

/* line 124, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 128, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button .dot {
  width: 4px;
  height: 4px;
  background-color: #202f66;
  border-radius: 50%;
  margin: 2px 0;
}

/* line 137, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 0.25rem 0;
  min-width: 150px;
  z-index: 100;
  display: none;
  pointer-events: auto;
}

/* line 150, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content.show {
  display: block;
}

/* line 154, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 1rem;
  text-decoration: none;
  color: #202f66;
  transition: 0.3s ease;
}

/* line 162, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

/* line 168, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 172, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item.btn-edit:hover {
  color: #2b3f8a;
}

/* line 176, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item.btn-delete:hover {
  color: #ea1d21;
}

@media (max-width: 390px) {
  /* line 88, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions {
    border-left: none;
    padding-left: 0;
    margin-left: 0.5rem;
    position: relative;
    z-index: 20;
  }
  /* line 190, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions .normal-actions {
    display: none;
  }
  /* line 194, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions {
    display: block;
  }
}

@media (max-width: 320px) {
  /* line 88, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions {
    margin-left: 5px;
  }
}

/* line 205, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* line 210, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-name {
  font-weight: 500;
  color: #202f66;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 390px) {
  /* line 210, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-name {
    max-width: 200px;
  }
}

@media (max-width: 320px) {
  /* line 210, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-name {
    max-width: 160px;
  }
}

/* line 227, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(32, 47, 102, 0.1);
  padding-left: 1rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none !important;
}

/* line 238, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .normal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 244, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions {
  display: none;
  position: relative;
  flex-shrink: 0;
}

/* line 249, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(32, 47, 102, 0.05);
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 30;
}

/* line 263, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 267, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__button .dot {
  width: 4px;
  height: 4px;
  background-color: #202f66;
  border-radius: 50%;
  margin: 2px 0;
}

/* line 276, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 0.25rem 0;
  min-width: 150px;
  z-index: 100;
  display: none;
  pointer-events: auto;
}

/* line 289, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content.show {
  display: block;
}

/* line 293, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 1rem;
  text-decoration: none;
  color: #202f66;
  transition: 0.3s ease;
}

/* line 301, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

/* line 307, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 311, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item.btn-edit:hover {
  color: #2b3f8a;
}

/* line 315, app/assets/stylesheets/_soft_skills.scss */
.soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions .kebab-menu__content .menu-item.btn-delete:hover {
  color: #ea1d21;
}

@media (max-width: 390px) {
  /* line 227, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions {
    border-left: none;
    padding-left: 0;
    margin-left: 0.5rem;
    position: relative;
    z-index: 20;
  }
  /* line 329, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions .normal-actions {
    display: none;
  }
  /* line 333, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions .kebab-actions {
    display: block;
  }
}

@media (max-width: 320px) {
  /* line 227, app/assets/stylesheets/_soft_skills.scss */
  .soft-skills-list .soft-skill-item .soft-skill-actions {
    margin-left: 5px;
  }
}

/* line 4, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu {
  position: relative;
  margin-left: auto;
}

/* line 8, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

/* line 22, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__button:hover {
  background-color: rgba(238, 237, 236, 0.2);
}

/* line 26, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__button.active {
  background-color: rgba(238, 237, 236, 0.5);
}

/* line 30, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__button .dot {
  width: 4px;
  height: 4px;
  background-color: #eeedec;
  border-radius: 50%;
  margin: 2px 0;
}

/* line 39, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 180px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  z-index: 10;
  overflow: hidden;
  display: none;
  padding-bottom: 4px;
}

/* line 52, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content.active {
  display: block;
}

/* line 57, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .kebab-form-button {
  margin: 0;
  padding: 0;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: block;
}

/* line 66, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .kebab-form-button .menu-item {
  width: 100%;
  justify-content: flex-start;
  background: none;
  border: none;
  box-shadow: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin: 0;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* line 85, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .kebab-form-button .menu-item i {
  margin-left: 24px;
}

/* line 89, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .kebab-form-button .menu-item::after {
  left: 24px;
  right: 0;
  width: 0;
}

/* line 95, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .kebab-form-button .menu-item:hover::after {
  width: calc(100% - 24px);
}

/* line 101, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content.show {
  display: block;
}

/* line 105, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #202f66;
  transition: 0.3s ease;
  position: relative;
  height: 40px;
  box-sizing: border-box;
}

/* line 116, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 120, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

/* line 131, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item:hover::after {
  width: 100%;
}

/* line 135, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

/* line 141, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-view {
  color: #202f66;
}

/* line 144, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-view:hover::after {
  background-color: #202f66;
}

/* line 149, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-edit {
  color: #2b3f8a;
}

/* line 152, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-edit:hover::after {
  background-color: #2b3f8a;
}

/* line 157, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-delete {
  color: #ea1d21;
}

/* line 160, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu__content .menu-item.btn-delete:hover::after {
  background-color: #ea1d21;
}

/* line 169, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: none;
}

/* line 178, app/assets/stylesheets/_kebab_menu.scss */
.kebab-menu-overlay.show {
  display: block;
}

/* line 4, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow-wrapper {
  position: relative;
  height: 25px;
  z-index: 10;
  margin-top: -12px;
  margin-bottom: 12px;
  pointer-events: none;
}

/* line 13, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b3f8a !important;
  border: 2px solid #eeedec;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

/* line 32, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow:hover {
  background-color: #2b3f8a;
}

/* line 36, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow.active {
  background-color: #2b3f8a;
}

/* line 40, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow i {
  color: #eeedec;
  font-size: 1rem;
  transition: 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* line 47, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow.collapsed {
  background-color: #2b3f8a !important;
}

/* line 50, app/assets/stylesheets/_toggle_arrow.scss */
.toggle-arrow.collapsed i {
  transform: rotate(180deg);
}

/* line 57, app/assets/stylesheets/_toggle_arrow.scss */
.education-list__group {
  position: relative;
}

/* line 61, app/assets/stylesheets/_toggle_arrow.scss */
.education-list__group.collapsed .education-list__group-items {
  display: none;
}

/* line 65, app/assets/stylesheets/_toggle_arrow.scss */
.education-list__group.collapsed + .education-list__group {
  margin-top: 30px;
}

/* line 4, app/assets/stylesheets/_skill_cards.scss */
.skill-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
}

/* line 11, app/assets/stylesheets/_skill_cards.scss */
.skill-card {
  position: relative;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: 0.3s ease;
}

/* line 19, app/assets/stylesheets/_skill_cards.scss */
.skill-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 23, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* line 30, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .normal-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 35, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions {
  display: none;
  position: relative;
}

/* line 39, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* line 52, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__button:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 56, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__button .dot {
  width: 4px;
  height: 4px;
  background-color: #2b3f8a;
  border-radius: 50%;
  margin: 2px 0;
}

/* line 65, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 0.25rem 0;
  min-width: 150px;
  z-index: 100;
  display: none;
}

/* line 77, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content.show {
  display: block;
}

/* line 81, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 1rem;
  text-decoration: none;
  color: #202f66;
  transition: 0.3s ease;
}

/* line 89, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

/* line 95, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item:hover {
  background-color: rgba(43, 63, 138, 0.05);
}

/* line 99, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-view:hover {
  color: #2b3f8a;
}

/* line 103, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-edit:hover {
  color: #2b3f8a;
}

/* line 107, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-delete:hover {
  color: #ea1d21;
}

/* line 114, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: 0.3s ease;
}

/* line 125, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon i {
  color: #2b3f8a;
  font-size: 1rem;
}

/* line 130, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon .tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #202f66;
  color: #eeedec;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  margin-top: 5px;
  pointer-events: none;
}

/* line 148, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 151, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* line 157, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon.btn-view:hover i {
  color: #2b3f8a;
}

/* line 161, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon.btn-edit:hover i {
  color: #2b3f8a;
}

/* line 165, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon.btn-delete:hover i {
  color: #ea1d21;
}

@media (max-width: 1009px) and (min-width: 769px) {
  /* line 172, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: none;
  }
  /* line 176, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: block;
  }
}

@media (max-width: 768px) and (min-width: 480px) {
  /* line 183, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: flex;
  }
  /* line 187, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: none;
  }
}

@media (max-width: 479px) {
  /* line 194, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: none;
  }
  /* line 198, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: block;
  }
}

/* line 205, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 210, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-logo {
  width: 80px;
  height: 80px;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 216, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 222, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-logo .no-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeedec;
  color: #202f66;
  font-weight: bold;
  font-size: 1.8rem;
}

/* line 235, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-info {
  flex: 1;
}

/* line 240, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-name {
  font-weight: 600;
  font-size: 1.2rem;
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 247, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 256, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-description {
  color: rgba(32, 47, 102, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
  padding-top: 1rem;
}

@media (max-width: 768px) {
  /* line 269, app/assets/stylesheets/_skill_cards.scss */
  .skill-cards {
    grid-template-columns: 1fr;
  }
}

/* line 4, app/assets/stylesheets/_animated_buttons.scss */
.header-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  /* line 4, app/assets/stylesheets/_animated_buttons.scss */
  .header-actions {
    justify-content: flex-end;
    margin-top: 15px;
  }
}

/* line 16, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button {
  display: flex;
  align-items: center;
  background-color: #2b3f8a;
  color: #eeedec;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  height: 44px;
  min-width: 44px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding-right: 0;
}

/* line 31, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button:hover, .animated-action-button:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding-right: 1rem;
}

/* line 35, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button:hover .button-text, .animated-action-button:focus .button-text {
  max-width: 300px;
  opacity: 1;
  transform: translateX(0);
}

/* line 41, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button:hover .icon-container, .animated-action-button:focus .icon-container {
  background-color: #253677;
}

/* line 46, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #2b3f8a;
  transition: all 0.3s ease;
  position: relative;
}

/* line 57, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button .icon-container:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: white;
}

/* line 66, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button .icon-container i {
  font-size: 1rem;
  color: #2b3f8a;
  position: relative;
  z-index: 1;
}

/* line 72, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button .icon-container i.fa-folder-plus {
  font-size: 0.9rem;
}

/* line 78, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button .button-text {
  padding: 0 0 0 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
  color: #eeedec;
}

/* line 92, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button:nth-child(1) {
  background-color: #2b3f8a;
}

/* line 96, app/assets/stylesheets/_animated_buttons.scss */
.animated-action-button:nth-child(2) {
  background-color: #2b3f8a;
}

/* line 4, app/assets/stylesheets/_section_transition.scss */
.code-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  color: #eeedec;
  text-shadow: 0 0 2px rgba(43, 63, 138, 0.5);
}

/* line 21, app/assets/stylesheets/_section_transition.scss */
.code-line {
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
  transform: translateX(50px);
  background-color: rgba(43, 63, 138, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  max-width: 80vw;
  overflow: hidden;
}

/* line 38, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(odd) {
  background-color: rgba(43, 63, 138, 0.08);
}

/* line 43, app/assets/stylesheets/_section_transition.scss */
.code-line .line-number {
  display: inline-block;
  min-width: 30px;
  color: rgba(238, 237, 236, 0.5);
  margin-right: 10px;
  text-align: right;
  user-select: none;
}

/* line 53, app/assets/stylesheets/_section_transition.scss */
.code-line .code-text {
  color: #eeedec;
  font-weight: 400;
}

/* line 58, app/assets/stylesheets/_section_transition.scss */
.code-line .code-text .keyword {
  color: #ff79c6;
}

/* line 62, app/assets/stylesheets/_section_transition.scss */
.code-line .code-text .string {
  color: #f1fa8c;
}

/* line 66, app/assets/stylesheets/_section_transition.scss */
.code-line .code-text .function {
  color: #50fa7b;
}

/* line 70, app/assets/stylesheets/_section_transition.scss */
.code-line .code-text .comment {
  color: #6272a4;
}

/* line 76, app/assets/stylesheets/_section_transition.scss */
.code-line .cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background-color: #eeedec;
  margin-left: 2px;
  animation: cursorBlink 1s infinite;
  opacity: 0;
}

@keyframes cursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(1) {
  animation-delay: 0.1s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(2) {
  animation-delay: 0.2s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(3) {
  animation-delay: 0.3s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(4) {
  animation-delay: 0.4s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(5) {
  animation-delay: 0.5s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(6) {
  animation-delay: 0.6s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(7) {
  animation-delay: 0.7s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(8) {
  animation-delay: 0.8s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(9) {
  animation-delay: 0.9s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(10) {
  animation-delay: 1s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(11) {
  animation-delay: 1.1s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(12) {
  animation-delay: 1.2s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(13) {
  animation-delay: 1.3s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(14) {
  animation-delay: 1.4s;
}

/* line 99, app/assets/stylesheets/_section_transition.scss */
.code-line:nth-child(15) {
  animation-delay: 1.5s;
}

/* line 105, app/assets/stylesheets/_section_transition.scss */
.code-line-right {
  transform: translateX(-50px);
  display: flex;
  flex-direction: row-reverse;
}

/* line 110, app/assets/stylesheets/_section_transition.scss */
.code-line-right .line-number {
  margin-right: 0;
  margin-left: 10px;
}

/* line 115, app/assets/stylesheets/_section_transition.scss */
.code-line-right .code-text {
  direction: ltr;
  text-align: left;
}

/* line 120, app/assets/stylesheets/_section_transition.scss */
.code-line-right .cursor {
  margin-left: 0;
  margin-right: 2px;
}

/* line 127, app/assets/stylesheets/_section_transition.scss */
.code-line:hover {
  background-color: rgba(43, 63, 138, 0.15);
  z-index: 101;
}

/* line 133, app/assets/stylesheets/_section_transition.scss */
.reveal-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

/* line 146, app/assets/stylesheets/_section_transition.scss */
.reveal-element {
  position: absolute;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: 40px !important;
  height: 40px !important;
  z-index: 95;
}

/* line 155, app/assets/stylesheets/_section_transition.scss */
.reveal-element.circle {
  border-radius: 50%;
  border: 3px solid rgba(43, 63, 138, 0.8);
  background-color: rgba(43, 63, 138, 0.3);
  box-shadow: 0 0 15px rgba(43, 63, 138, 0.5);
}

/* line 162, app/assets/stylesheets/_section_transition.scss */
.reveal-element.square {
  border: 3px solid rgba(43, 63, 138, 0.8);
  background-color: rgba(43, 63, 138, 0.3);
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(43, 63, 138, 0.5);
}

/* line 169, app/assets/stylesheets/_section_transition.scss */
.reveal-element.triangle {
  width: 0 !important;
  height: 0 !important;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(43, 63, 138, 0.6);
  background-color: transparent;
  filter: drop-shadow(0 0 10px rgba(43, 63, 138, 0.5));
}

/* line 179, app/assets/stylesheets/_section_transition.scss */
.reveal-element.diamond {
  transform: rotate(45deg);
  border: 3px solid rgba(234, 29, 33, 0.8);
  background-color: rgba(234, 29, 33, 0.3);
  box-shadow: 0 0 15px rgba(234, 29, 33, 0.5);
}

/* line 186, app/assets/stylesheets/_section_transition.scss */
.reveal-element.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 3px solid rgba(43, 63, 138, 0.8);
  background-color: rgba(43, 63, 138, 0.3);
  box-shadow: 0 0 15px rgba(43, 63, 138, 0.5);
}

/* line 194, app/assets/stylesheets/_section_transition.scss */
.reveal-element.bracket-left::after {
  content: '{';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 207, app/assets/stylesheets/_section_transition.scss */
.reveal-element.bracket-right::after {
  content: '}';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 220, app/assets/stylesheets/_section_transition.scss */
.reveal-element.parenthesis-left::after {
  content: '(';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 233, app/assets/stylesheets/_section_transition.scss */
.reveal-element.parenthesis-right::after {
  content: ')';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 246, app/assets/stylesheets/_section_transition.scss */
.reveal-element.dot::after {
  content: '.';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 259, app/assets/stylesheets/_section_transition.scss */
.reveal-element.plus::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 272, app/assets/stylesheets/_section_transition.scss */
.reveal-element.minus::after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 285, app/assets/stylesheets/_section_transition.scss */
.reveal-element.asterisk::after {
  content: '*';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

/* line 298, app/assets/stylesheets/_section_transition.scss */
.reveal-element.equals::after {
  content: '=';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeedec;
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(43, 63, 138, 0.8);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 768px) {
  /* line 327, app/assets/stylesheets/_section_transition.scss */
  .code-line {
    font-size: 12px;
    max-width: 90vw;
  }
}

/* line 5, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions,
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px !important;
  padding: 16px !important;
  border-top: none;
  background-color: #2b3f8a !important;
  border-radius: 8px !important;
  width: calc(100% - 0px) !important;
  position: relative !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  gap: 1rem !important;
}

/* line 21, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn,
.form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 160px;
}

/* line 35, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-view,
.form-actions .btn.btn-view {
  background-color: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  margin-right: 0 !important;
}

/* line 41, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-view:hover,
.form-actions .btn.btn-view:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* line 47, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-edit,
.form-actions .btn.btn-edit {
  background-color: #ffffff !important;
  color: #2c3e7e !important;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 53, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-edit:hover,
.form-actions .btn.btn-edit:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #ecf7ff !important;
  transform: translateY(-2px);
}

/* line 61, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-delete,
.form-actions .btn.btn-delete {
  background-color: #ea1d21;
  color: white;
}

/* line 65, app/assets/stylesheets/_form_actions.scss */
.experience-list__item-actions .btn.btn-delete:hover,
.form-actions .btn.btn-delete:hover {
  background-color: #c21215;
}

/* line 73, app/assets/stylesheets/_form_actions.scss */
.experience-list__group-items {
  margin-bottom: 0 !important;
}

@media (max-width: 576px) {
  /* line 79, app/assets/stylesheets/_form_actions.scss */
  .experience-list__item-actions,
.form-actions {
    flex-direction: column;
  }
  /* line 83, app/assets/stylesheets/_form_actions.scss */
  .experience-list__item-actions .btn,
.form-actions .btn {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
  /* line 87, app/assets/stylesheets/_form_actions.scss */
  .experience-list__item-actions .btn:first-child,
.form-actions .btn:first-child {
    margin-right: 0;
  }
}

/* line 95, app/assets/stylesheets/_form_actions.scss */
.admin-form {
  margin-bottom: 0 !important;
}

/* line 5, app/assets/stylesheets/_project_admin.scss */
.admin-projects-container {
  background-color: #f5f5f7;
  min-height: calc(100vh - 150px);
  padding: 32px 0;
}

/* line 10, app/assets/stylesheets/_project_admin.scss */
.admin-projects-container .container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* line 20, app/assets/stylesheets/_project_admin.scss */
.projects-list__header {
  margin-bottom: 2rem;
  padding-top: 2rem;
  /* Les styles du bouton sont maintenant définis dans _animated_buttons.scss */
}

@media (max-width: 768px) {
  /* line 20, app/assets/stylesheets/_project_admin.scss */
  .projects-list__header {
    display: block;
  }
}

@media (min-width: 769px) {
  /* line 20, app/assets/stylesheets/_project_admin.scss */
  .projects-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* line 34, app/assets/stylesheets/_project_admin.scss */
.projects-list__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  /* Trait supprimé pour harmoniser avec les autres sections admin */
}

/* line 46, app/assets/stylesheets/_project_admin.scss */
.projects-list__content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* line 55, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 60, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead tr {
  background-color: #2b3f8a;
}

/* line 64, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead th {
  color: white;
  font-weight: 600;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 74, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead th:last-child {
  border-right: none;
}

/* line 81, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr {
  transition: background-color 0.2s ease;
  border-bottom: 2px solid #d1d9e6;
}

/* line 86, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-development {
  background-color: rgba(47, 62, 133, 0.15);
}

/* line 89, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-development:hover {
  background-color: rgba(47, 62, 133, 0.25);
}

/* line 94, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-retouche {
  background-color: rgba(58, 156, 90, 0.15);
}

/* line 97, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-retouche:hover {
  background-color: rgba(58, 156, 90, 0.25);
}

/* line 102, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr:last-child {
  border-bottom: none;
}

/* line 107, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody td {
  padding: 15px;
  vertical-align: middle;
  color: #202f66;
  font-size: 0.95rem;
}

/* line 114, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody td.position-cell {
  text-align: center;
}

/* line 122, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 132, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-weight: bold;
  position: relative;
}

/* line 141, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-development {
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
}

/* line 145, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-development .badge-icon {
  font-size: 0.85rem;
  top: -1px;
}

/* line 151, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* line 155, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche .badge-icon {
  font-size: 0.8rem;
}

/* line 158, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche .badge-icon i {
  position: relative;
  top: -1px;
}

/* line 167, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges-cell {
  vertical-align: middle;
}

/* line 172, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-start;
}

/* line 178, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges .tech-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}

/* line 185, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges .tech-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  background-color: #f1f3f5;
  color: #1f1f1f;
  white-space: nowrap;
}

/* line 194, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges .tech-badge.tech-badge-more {
  background-color: #e9ecef;
  color: #6c757d;
}

/* line 203, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-detail__section .tech-badges {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px;
}

/* line 210, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-detail__section .tech-badges .tech-badge {
  display: inline-block !important;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  background-color: #f1f3f5;
  color: #1f1f1f;
  white-space: nowrap;
  margin-bottom: 5px;
  width: auto !important;
}

/* line 225, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell {
  width: 100px;
}

/* line 228, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 236, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell .placeholder-image {
  width: 80px;
  height: 80px;
  background-color: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ecef;
}

/* line 246, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell .placeholder-image i {
  font-size: 24px;
  color: #2b3f8a;
}

/* line 262, app/assets/stylesheets/_project_admin.scss */
.project-detail {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 0 !important;
}

/* line 270, app/assets/stylesheets/_project_admin.scss */
.project-detail__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(47, 62, 133, 0.15);
}

/* line 281, app/assets/stylesheets/_project_admin.scss */
.project-detail__header.header-retouche {
  background-color: rgba(58, 156, 90, 0.15);
}

/* line 285, app/assets/stylesheets/_project_admin.scss */
.project-detail__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

/* line 292, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .project-type-badge {
  margin-left: 1rem;
}

/* line 296, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 300, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 310, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn i {
  margin-right: 6px;
}

/* line 314, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 318, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 323, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-danger {
  background-color: #ea1d21;
  color: white;
}

/* line 327, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-danger:hover {
  background-color: #c21215;
}

/* line 332, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-outline {
  border: 1px solid #6c757d;
  color: #1f1f1f;
}

/* line 336, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-outline:hover {
  background-color: #6c757d;
  color: white;
}

/* line 345, app/assets/stylesheets/_project_admin.scss */
.project-detail__main-image {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  text-align: center;
}

/* line 351, app/assets/stylesheets/_project_admin.scss */
.project-detail__main-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 360, app/assets/stylesheets/_project_admin.scss */
.project-detail__content {
  padding: 1.5rem;
}

/* line 364, app/assets/stylesheets/_project_admin.scss */
.project-detail__section {
  margin-bottom: 2rem;
}

/* line 367, app/assets/stylesheets/_project_admin.scss */
.project-detail__section:last-child {
  margin-bottom: 0;
}

/* line 371, app/assets/stylesheets/_project_admin.scss */
.project-detail__section h3 {
  color: #202f66;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #e9ecef;
}

/* line 380, app/assets/stylesheets/_project_admin.scss */
.project-detail__section p {
  color: #202f66;
  line-height: 1.6;
}

/* line 387, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 392, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #2b3f8a;
  transition: all 0.2s ease;
}

/* line 401, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item:hover {
  background-color: #e9ecef;
  transform: translateX(3px);
}

/* line 406, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(43, 63, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 417, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-icon i {
  font-size: 1.2rem;
  color: #2b3f8a;
}

/* line 423, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content {
  flex-grow: 1;
}

/* line 426, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content .external-link-label {
  display: block;
  font-weight: 500;
  color: #202f66;
  margin-bottom: 2px;
}

/* line 433, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content .external-link-url {
  color: #2b3f8a;
  text-decoration: none;
  word-break: break-all;
}

/* line 438, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content .external-link-url:hover {
  text-decoration: underline;
}

/* line 447, app/assets/stylesheets/_project_admin.scss */
.project-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* line 453, app/assets/stylesheets/_project_admin.scss */
.project-detail__gallery-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  position: relative;
}

/* line 462, app/assets/stylesheets/_project_admin.scss */
.project-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 471, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  /* line 471, app/assets/stylesheets/_project_admin.scss */
  .project-detail__before-after {
    grid-template-columns: 1fr;
  }
}

/* line 481, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* line 489, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item h4 {
  background-color: #f8f9fa;
  padding: 0.5rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #202f66;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

/* line 500, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item h4:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

/* line 510, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item:first-child h4:before {
  background-color: #ea1d21;
}

/* line 514, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item:last-child h4:before {
  background-color: #28a745;
}

/* line 518, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 0.2s ease;
}

/* line 530, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 537, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__header {
  background-color: #f8f9fa;
}

/* line 541, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__description {
  font-size: 0.9rem;
  color: #1f1f1f;
  padding: 1rem !important;
}

/* line 547, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__images {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 553, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__images img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 563, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visuals-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 571, app/assets/stylesheets/_project_admin.scss */
.project-type-selection {
  margin: 2rem 0;
}

/* line 574, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header {
  margin-bottom: 2rem;
  text-align: center;
}

/* line 578, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header h2 {
  color: #202f66;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 585, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header p {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* line 592, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* line 592, app/assets/stylesheets/_project_admin.scss */
  .project-type-selection__cards {
    grid-template-columns: 1fr;
  }
}

/* line 602, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card {
  height: 100%;
  transition: all 0.3s ease;
}

/* line 606, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__inner {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* line 618, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #2b3f8a;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 631, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card:hover .project-type-selection .project-type-card__inner {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 635, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card:hover .project-type-selection .project-type-card__inner:before {
  opacity: 1;
}

/* line 640, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__icon {
  font-size: 3rem;
  color: #2b3f8a;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* line 646, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__icon .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(43, 63, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* line 658, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #202f66;
}

/* line 666, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

/* line 673, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features {
  margin-bottom: 1.5rem;
}

/* line 676, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features ul {
  list-style: none;
  padding-left: 0;
}

/* line 681, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features li {
  margin-bottom: 0.5rem;
  color: #202f66;
  display: flex;
  align-items: flex-start;
}

/* line 688, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features i {
  color: #28a745;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 696, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__action {
  text-align: center;
}

/* line 699, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__action .btn {
  display: inline-block;
  background-color: #2b3f8a;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

/* line 710, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__action .btn:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
}

/* line 720, app/assets/stylesheets/_project_admin.scss */
.project-form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

/* line 727, app/assets/stylesheets/_project_admin.scss */
.project-form__header {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 735, app/assets/stylesheets/_project_admin.scss */
.project-form__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.25rem;
}

/* line 743, app/assets/stylesheets/_project_admin.scss */
.project-form__header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #2b3f8a;
}

/* line 754, app/assets/stylesheets/_project_admin.scss */
.project-form__header .btn-back {
  color: #6c757d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid #6c757d;
}

/* line 765, app/assets/stylesheets/_project_admin.scss */
.project-form__header .btn-back:hover {
  color: #202f66;
  background-color: #f1f3f5;
  border-color: #202f66;
}

/* line 771, app/assets/stylesheets/_project_admin.scss */
.project-form__header .btn-back i {
  font-size: 1rem;
}

/* line 777, app/assets/stylesheets/_project_admin.scss */
.project-form__content {
  padding: 1.5rem;
}

/* line 781, app/assets/stylesheets/_project_admin.scss */
.project-form__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

/* line 786, app/assets/stylesheets/_project_admin.scss */
.project-form__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 792, app/assets/stylesheets/_project_admin.scss */
.project-form__section h3 {
  color: #202f66;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* line 800, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group {
  margin-bottom: 1.5rem;
}

/* line 803, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group:last-child {
  margin-bottom: 0;
}

/* line 807, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #202f66;
  font-size: 0.95rem;
}

/* line 815, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group .form-text {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #6c757d;
}

/* line 822, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group input[type="text"],
.project-form .form-group input[type="url"],
.project-form .form-group input[type="number"],
.project-form .form-group input[type="date"],
.project-form .form-group textarea,
.project-form .form-group select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: white;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: #202f66;
}

/* line 837, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group input[type="text"]:focus,
.project-form .form-group input[type="url"]:focus,
.project-form .form-group input[type="number"]:focus,
.project-form .form-group input[type="date"]:focus,
.project-form .form-group textarea:focus,
.project-form .form-group select:focus {
  border-color: #2b3f8a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 63, 138, 0.2);
}

/* line 844, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* line 850, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

/* line 858, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 868, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn i {
  margin-right: 8px;
}

/* line 872, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
  border: none;
}

/* line 877, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-primary:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 884, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-secondary {
  background-color: #f8f9fa;
  color: #202f66;
  border: 1px solid #ced4da;
}

/* line 889, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-secondary:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

/* line 895, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-danger {
  background-color: white;
  color: #ea1d21;
  border: 1px solid #ea1d21;
}

/* line 900, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-danger:hover {
  background-color: #ea1d21;
  color: white;
}

/* line 909, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input {
  position: relative;
}

/* line 912, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* line 922, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-input-label {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 4px;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 933, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-input-label i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* line 938, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-input-label:hover {
  background-color: #e9ecef;
  border-color: #2b3f8a;
  color: #2b3f8a;
}

/* line 945, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* line 951, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview .preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 959, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 965, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview .preview-item .remove-preview {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ea1d21;
  font-size: 12px;
}

/* line 980, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview .preview-item .remove-preview:hover {
  background-color: white;
}

/* line 3, app/assets/stylesheets/_project_type_selection.scss */
.project-type-selection-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* line 8, app/assets/stylesheets/_project_type_selection.scss */
.project-type-selection-container__header, .project-type-selection-container .project-type-selection__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

/* line 15, app/assets/stylesheets/_project_type_selection.scss */
.project-type-selection-container__header h2, .project-type-selection-container .project-type-selection__header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #202f66;
  margin: 0;
}

/* line 25, app/assets/stylesheets/_project_type_selection.scss */
.project-type-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  /* line 25, app/assets/stylesheets/_project_type_selection.scss */
  .project-type-cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* line 39, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  /* line 39, app/assets/stylesheets/_project_type_selection.scss */
  .project-type-card {
    width: calc(50% - 15px);
    max-width: 500px;
  }
}

/* line 50, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__inner {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* line 61, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card:hover .project-type-card__inner {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* line 66, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__icon {
  font-size: 2.5rem;
  color: #2b3f8a;
  margin-bottom: 1rem;
  text-align: center;
}

/* line 73, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

/* line 80, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__description {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* line 86, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__features {
  margin-bottom: 1.5rem;
}

/* line 89, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__features ul {
  list-style: none;
  padding-left: 0;
}

/* line 93, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__features ul li {
  margin-bottom: 0.5rem;
}

/* line 96, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__features ul li i {
  color: #2ecc71;
  margin-right: 0.5rem;
}

/* line 104, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card .btn-block {
  display: block;
  width: 100%;
}

/* line 110, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card .btn-primary {
  background-color: #2b3f8a;
  border-color: #2b3f8a;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* line 117, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card .btn-primary:hover, .project-type-card .btn-primary:focus {
  background-color: #3751b1;
  border-color: #3751b1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 125, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card .btn-primary:active {
  background-color: #253677;
  border-color: #253677;
  color: white;
  transform: translateY(0);
}

/* line 133, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card:hover .project-type-card__icon .icon-circle {
  transform: scale(1.05);
  background-color: rgba(43, 63, 138, 0.15);
}

/* line 138, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card:hover .project-type-card__action .btn {
  background-color: #253677;
}

/* line 144, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__icon .icon-circle {
  transition: all 0.2s ease;
}

/* line 152, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__features ul li i {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* line 167, app/assets/stylesheets/_project_type_selection.scss */
.project-type-card__action .btn {
  font-weight: 500;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* line 5, app/assets/stylesheets/_common_buttons.scss */
.btn-primary {
  background-color: #2b3f8a;
  border-color: #2b3f8a;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 17, app/assets/stylesheets/_common_buttons.scss */
.btn-primary i {
  margin-right: 0.5rem;
}

/* line 21, app/assets/stylesheets/_common_buttons.scss */
.btn-primary:hover, .btn-primary:focus {
  background-color: #3751b1;
  border-color: #3751b1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 29, app/assets/stylesheets/_common_buttons.scss */
.btn-primary:active {
  background-color: #253677;
  border-color: #253677;
  color: white;
  transform: translateY(0);
}

/* line 39, app/assets/stylesheets/_common_buttons.scss */
.empty-state .btn-primary {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* line 48, app/assets/stylesheets/_common_buttons.scss */
.project-type-card .btn-primary, .project-type-card .btn-block, .home-section-card .btn-primary, .home-section-card .btn-block {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0.75rem;
}

/* line 54, app/assets/stylesheets/_common_buttons.scss */
.project-type-card .btn-primary:hover, .project-type-card .btn-block:hover, .home-section-card .btn-primary:hover, .home-section-card .btn-block:hover {
  background-color: #3751b1;
  border-color: #3751b1;
}

/* line 5, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal {
  position: fixed;
  z-index: 4500;
  align-items: center;
  justify-content: center;
}

/* line 11, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal .modal-content {
  width: 100%;
  max-width: 900px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2b3f8a;
  color: white;
  padding: 1rem 1.5rem;
}

/* line 29, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal .modal-close,
#imagePreviewModal .close-modal {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: white;
  opacity: 0.9;
  line-height: 1;
}

/* line 38, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal .modal-close:hover,
#imagePreviewModal .close-modal:hover {
  opacity: 1;
}

/* line 41, app/assets/stylesheets/_image_preview_modal.scss */
#imagePreviewModal .modal-body {
  padding: 1.5rem;
}

/* line 51, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .delete-confirmation-modal__container {
  max-width: 800px;
}

/* line 55, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .delete-confirmation-modal__content {
  padding: 20px;
  text-align: center;
  max-height: 80vh;
  overflow-y: auto;
}

/* line 62, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .image-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 70vh;
  overflow: hidden;
}

/* line 70, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .preview-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 79, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .delete-confirmation-modal__close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* line 88, app/assets/stylesheets/_image_preview_modal.scss */
.delete-confirmation-modal .delete-confirmation-modal__close:hover {
  opacity: 1;
}

/* line 5, app/assets/stylesheets/_file_upload.scss */
.file-upload-container {
  position: relative;
  margin-bottom: 1rem;
}

/* line 9, app/assets/stylesheets/_file_upload.scss */
.file-upload-container input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  color: #202f66;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 21, app/assets/stylesheets/_file_upload.scss */
.file-upload-container input[type="file"]::-webkit-file-upload-button {
  background-color: #2b3f8a;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 31, app/assets/stylesheets/_file_upload.scss */
.file-upload-container input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #1f2d63;
}

/* line 36, app/assets/stylesheets/_file_upload.scss */
.file-upload-container input[type="file"]:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 45, app/assets/stylesheets/_file_upload.scss */
.form-control-file {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 0.75rem;
  color: #495057;
  line-height: 1.5;
  font-size: 1rem;
  cursor: pointer;
}

/* line 59, app/assets/stylesheets/_file_upload.scss */
.form-control-file::-webkit-file-upload-button {
  background-color: #2b3f8a;
  color: white;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 0.2rem;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* line 69, app/assets/stylesheets/_file_upload.scss */
.form-control-file::-webkit-file-upload-button:hover {
  background-color: #1f2d63;
}

/* line 74, app/assets/stylesheets/_file_upload.scss */
.form-control-file:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 82, app/assets/stylesheets/_file_upload.scss */
.form-control-file:hover {
  background-color: #e9ecef;
}

/* line 89, app/assets/stylesheets/_file_upload.scss */
.visual-images .form-group {
  margin-bottom: 1.5rem;
}

/* line 92, app/assets/stylesheets/_file_upload.scss */
.visual-images .form-group.col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

/* line 97, app/assets/stylesheets/_file_upload.scss */
.visual-images .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #212529;
}

/* line 107, app/assets/stylesheets/_file_upload.scss */
.logo-preview {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* line 112, app/assets/stylesheets/_file_upload.scss */
.logo-preview img {
  max-width: 120px;
  max-height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  object-fit: contain;
}

/* line 121, app/assets/stylesheets/_file_upload.scss */
.logo-preview .no-logo {
  width: 120px;
  height: 120px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(32, 47, 102, 0.7);
  font-size: 0.9rem;
  background-color: #f8f9fa;
  font-weight: 500;
}

/* line 137, app/assets/stylesheets/_file_upload.scss */
.current-file {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* line 144, app/assets/stylesheets/_file_upload.scss */
.current-file .current-file-name {
  font-weight: 500;
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 150, app/assets/stylesheets/_file_upload.scss */
.current-file .file-delete-option {
  display: flex;
  align-items: center;
}

/* line 154, app/assets/stylesheets/_file_upload.scss */
.current-file .file-delete-option input[type="checkbox"] {
  margin-right: 0.25rem;
}

/* line 158, app/assets/stylesheets/_file_upload.scss */
.current-file .file-delete-option label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* line 166, app/assets/stylesheets/_file_upload.scss */
.current-image {
  margin-bottom: 1rem;
  text-align: center;
}

/* line 170, app/assets/stylesheets/_file_upload.scss */
.current-image .preview-image {
  max-width: 200px;
  max-height: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  object-fit: contain;
}

/* line 179, app/assets/stylesheets/_file_upload.scss */
.current-image p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 187, app/assets/stylesheets/_file_upload.scss */
input[type="file"]::after {
  content: attr(value);
  position: absolute;
  left: 120px;
  top: 0;
  padding: 0.5rem;
  color: #202f66;
  pointer-events: none;
}

/* line 4, app/assets/stylesheets/_project_visuals.scss */
.mb-3 {
  margin-bottom: 0.5rem;
}

/* line 9, app/assets/stylesheets/_project_visuals.scss */
.project-visuals h3, .project-detail__section h3 {
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0;
}

/* line 16, app/assets/stylesheets/_project_visuals.scss */
.visual-item h4 {
  display: none !important;
}

/* line 21, app/assets/stylesheets/_project_visuals.scss */
.visual-item .mb-3,
.project-visuals .mb-3,
.project-detail__section .mb-3,
div[style*="display: flex; justify-content: space-between; align-items: center;"] {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

/* line 33, app/assets/stylesheets/_project_visuals.scss */
.visual-item h3 {
  margin-bottom: 0 !important;
  display: inline-block !important;
}

/* line 39, app/assets/stylesheets/_project_visuals.scss */
.badge.bg-primary {
  border-radius: 50px;
  padding: 0.1rem 0.8rem;
  display: inline-block !important;
  white-space: nowrap !important;
  margin-left: 10px !important;
  flex-shrink: 0 !important;
}

/* line 49, app/assets/stylesheets/_project_visuals.scss */
.project-visuals {
  margin-top: 1.5rem;
}

/* line 54, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image, .project-image, .visual-image:not(.project-detail__before-after-item), .visual-standard > div {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  margin-bottom: 1rem;
  flex-direction: column;
}

/* line 67, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image img, .project-image img, .visual-image:not(.project-detail__before-after-item) img, .visual-standard > div img {
  max-width: 100%;
  height: auto;
}

/* line 72, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image h4, .project-image h4, .visual-image:not(.project-detail__before-after-item) h4, .visual-standard > div h4 {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0;
}

/* line 82, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image__carousel-images .row img, .project-image__carousel-images .row img, .visual-image:not__carousel-images(.project-detail__before-after-item) .row img, .visual-standard > div__carousel-images .row img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

/* line 94, app/assets/stylesheets/_project_visuals.scss */
.row:not(.retouche-side-by-side-row) .col-md-6 .visual-image:not(.project-detail__before-after-item) {
  max-width: 100%;
}

/* line 101, app/assets/stylesheets/_project_visuals.scss */
.visual-slider {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  margin-bottom: 1rem;
}

/* line 107, app/assets/stylesheets/_project_visuals.scss */
.visual-slider .slider-container {
  position: relative;
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  overflow: hidden;
}

/* line 114, app/assets/stylesheets/_project_visuals.scss */
.visual-slider .slider-container .slider-before, .visual-slider .slider-container .slider-after {
  max-width: 100%;
  height: auto;
}

/* line 119, app/assets/stylesheets/_project_visuals.scss */
.visual-slider .slider-container .slider-after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* line 127, app/assets/stylesheets/_project_visuals.scss */
.visual-slider .slider-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #2b3f8a;
  cursor: ew-resize;
  transform: translateX(-50%);
}

/* line 137, app/assets/stylesheets/_project_visuals.scss */
.visual-slider .slider-container .slider-handle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2b3f8a;
  border: 3px solid white;
}

/* line 154, app/assets/stylesheets/_project_visuals.scss */
.visual-item {
  margin-bottom: 2rem;
}

/* line 157, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-company {
  font-size: 1.3rem;
  color: #202f66;
  margin-bottom: 0.5rem;
}

/* line 163, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-description {
  color: #1f1f1f;
  margin-bottom: 1rem;
}

/* line 170, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-standard, .visual-item .visual-images .row {
  margin-bottom: 1rem;
}

/* line 173, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-standard h4, .visual-item .visual-images .row h4 {
  font-size: 1.1rem;
  color: #202f66;
  margin-bottom: 0.25rem;
}

/* line 181, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-slider {
  position: relative;
  margin-bottom: 1rem;
}

/* line 185, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-slider .slider-container {
  position: relative;
  overflow: hidden;
}

/* line 189, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-slider .slider-container .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: white;
  cursor: ew-resize;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
  left: 50%;
}

/* line 204, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-single {
  max-width: 800px;
  margin: 0 auto;
}

/* line 208, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-single img {
  width: 100%;
  height: auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* line 214, app/assets/stylesheets/_project_visuals.scss */
.visual-item .visual-images .visual-single img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* line 225, app/assets/stylesheets/_project_visuals.scss */
.badge.bg-primary {
  background-color: #2b3f8a !important;
  color: white !important;
}

/* line 233, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image {
  max-width: 800px;
  margin-bottom: 1rem;
}

/* line 237, app/assets/stylesheets/_project_visuals.scss */
.project-detail__main-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* line 247, app/assets/stylesheets/_project_visuals.scss */
.project-detail__before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* line 252, app/assets/stylesheets/_project_visuals.scss */
.project-detail__before-after-item {
  flex: 1;
  min-width: 300px;
  position: relative;
}

/* line 257, app/assets/stylesheets/_project_visuals.scss */
.project-detail__before-after-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

/* line 262, app/assets/stylesheets/_project_visuals.scss */
.project-detail__before-after-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* line 6, app/assets/stylesheets/_retouche_side_by_side.scss */
.retouche-side-by-side-container {
  margin-bottom: 1.5rem;
}

/* line 11, app/assets/stylesheets/_retouche_side_by_side.scss */
.retouche-side-by-side-row {
  margin-left: 0;
  margin-right: 0;
}

/* line 15, app/assets/stylesheets/_retouche_side_by_side.scss */
.retouche-side-by-side-row .col-md-6 {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 22, app/assets/stylesheets/_retouche_side_by_side.scss */
.project-detail__before-after-item {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 30, app/assets/stylesheets/_retouche_side_by_side.scss */
.project-detail__before-after-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  text-align: center;
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0;
}

/* line 42, app/assets/stylesheets/_retouche_side_by_side.scss */
.project-detail__before-after-item .retouche-side-by-side-image {
  width: 100% !important;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  flex: 1;
  min-height: 300px;
  max-height: 500px;
}

/* line 55, app/assets/stylesheets/_retouche_side_by_side.scss */
.retouche-before-item h4 {
  color: #dc3545;
}

/* line 61, app/assets/stylesheets/_retouche_side_by_side.scss */
.retouche-after-item h4 {
  color: #28a745;
}

@media (max-width: 768px) {
  /* line 69, app/assets/stylesheets/_retouche_side_by_side.scss */
  .retouche-side-by-side-row .col-md-6 {
    margin-bottom: 1rem;
  }
  /* line 72, app/assets/stylesheets/_retouche_side_by_side.scss */
  .retouche-side-by-side-row .col-md-6:last-child {
    margin-bottom: 0;
  }
  /* line 79, app/assets/stylesheets/_retouche_side_by_side.scss */
  .project-detail__before-after-item .retouche-side-by-side-image {
    min-height: 200px;
    max-height: 300px;
  }
}

/* line 87, app/assets/stylesheets/_retouche_side_by_side.scss */
.project-detail__before-after-item img.retouche-side-by-side-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* line 7, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

/* line 14, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
}

/* line 22, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0;
}

/* line 33, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item .modal-side-by-side-image {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 8px;
  display: block !important;
  margin: 0 auto;
  overflow: visible !important;
  min-height: auto !important;
  box-sizing: border-box;
}

/* line 54, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item:first-child h5 {
  color: #dc3545;
}

/* line 58, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item:last-child h5 {
  color: #28a745;
}

@media (max-width: 768px) {
  /* line 65, app/assets/stylesheets/_modal_side_by_side.scss */
  .project-detail__before-after.modal-side-by-side {
    flex-direction: column;
    gap: 1rem;
  }
  /* line 70, app/assets/stylesheets/_modal_side_by_side.scss */
  .project-detail__before-after.modal-side-by-side .modal-side-by-side-item .modal-side-by-side-image {
    max-height: 400px;
  }
}

/* line 79, app/assets/stylesheets/_modal_side_by_side.scss */
.project-detail__before-after.modal-side-by-side .modal-side-by-side-item {
  min-height: fit-content;
  height: auto;
}

/* line 87, app/assets/stylesheets/_modal_side_by_side.scss */
.simple-image-modal .project-detail__before-after.modal-side-by-side {
  margin: 0;
  padding: 0;
}

/* line 91, app/assets/stylesheets/_modal_side_by_side.scss */
.simple-image-modal .project-detail__before-after.modal-side-by-side .modal-side-by-side-item {
  margin-bottom: 0;
}

/* line 98, app/assets/stylesheets/_modal_side_by_side.scss */
.modal-side-by-side-image {
  clip-path: none !important;
  mask: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  aspect-ratio: auto !important;
}

/* line 6, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

/* line 23, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 540px) {
  /* line 32, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__images-container {
    flex-direction: row;
    gap: 0;
  }
  /* line 39, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* line 42, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item:first-child .fullscreen-side-by-side-modal__item-header {
    border-top-right-radius: 0;
  }
  /* line 45, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item:first-child .fullscreen-side-by-side-modal__item-image, .fullscreen-side-by-side-modal__item:first-child img {
    border-bottom-right-radius: 0;
  }
  /* line 51, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item:last-child .fullscreen-side-by-side-modal__item-header {
    border-top-left-radius: 0;
  }
  /* line 54, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item:last-child .fullscreen-side-by-side-modal__item-image, .fullscreen-side-by-side-modal__item:last-child img {
    border-bottom-left-radius: 0;
  }
  /* line 60, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__overlay {
    padding: 10px;
  }
  /* line 64, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__content {
    max-width: 95vw;
    max-height: 95vh;
    padding: 10px !important;
    top: 0 !important;
    min-width: auto;
    min-height: auto;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  /* line 77, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__overlay {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* line 84, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__content {
    max-width: 95vw;
    max-height: 95vh;
    padding: clamp(5px, calc(2.2026vw - 6.916px), 10px) !important;
    min-width: auto;
    min-height: auto;
  }
  /* line 92, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__images-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    max-height: none;
    min-height: 0;
    gap: 5px;
  }
  /* line 104, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item .fullscreen-side-by-side-modal__item-header h3 {
    font-size: 0.9rem;
  }
  /* line 109, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description {
    padding: 12px 15px;
  }
  /* line 111, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  /* line 115, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description .description-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  /* ===== Side-by-side HORIZONTAL – breakpoint intermédiaire ===== */
  /* line 122, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal {
    /* Chaque demi-image occupe toute la largeur quand on empile */
    /* Le séparateur vertical devient inutile en pile : on le masque */
    /* Description fluide */
    /* Spécifications Windsurf (541–768) : largeur content + gap images */
  }
  /* line 123, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__images-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }
  /* line 133, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__item {
    width: 100% !important;
  }
  /* line 136, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__item-header {
    width: 100% !important;
  }
  /* line 139, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__item-image {
    width: 100% !important;
  }
  /* line 142, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__item-image img {
    width: 100% !important;
    height: auto !important;
  }
  /* line 148, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .separator,
.fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__separator {
    display: none !important;
  }
  /* line 154, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__description {
    width: auto !important;
    max-width: 100% !important;
    margin: 12px 0 0 !important;
  }
  /* line 161, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__content {
    width: 100% !important;
    max-width: 390px !important;
    max-height: max-content !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  /* line 169, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--horizontal .fullscreen-side-by-side-modal__images-container {
    gap: 10px !important;
  }
}

/* ===== Side-by-side VERTICALE — 540px → 320px ===== */
@media (min-width: 320px) and (max-width: 540px) {
  /* line 177, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical {
    /* Contrainte viewport et centrage global */
    /* Empilement vertical avec espacement réduit */
    /* Chaque item: header dans le flux + zone image flexible */
    /* Masquer le séparateur vertical en pile */
    /* Description fluide et scroll interne uniquement si nécessaire */
  }
  /* line 179, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 95vw;
    margin: 0 auto;
    max-height: calc(100dvh - 20px);
    overflow: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
    min-height: 0;
  }
  /* line 195, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }
  /* line 208, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }
  /* line 215, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__item-header {
    position: static;
    width: 100%;
    margin-bottom: 6px;
  }
  /* line 221, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow: hidden;
  }
  /* line 231, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__item-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
  }
  /* line 241, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .separator,
.fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__separator {
    display: none;
  }
  /* line 247, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal.fullscreen-side-by-side-modal--vertical .fullscreen-side-by-side-modal__description {
    width: auto;
    max-width: 100%;
    margin-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    max-height: 38vh;
  }
}

/* line 260, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__content {
  background-color: none;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 275, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.active .fullscreen-side-by-side-modal__content {
  transform: scale(1);
}

/* line 280, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.zoom-active .fullscreen-side-by-side-modal__content {
  max-height: 90vh;
  height: auto;
}

/* line 287, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.2rem;
  color: #57649d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 11001;
  /* Même z-index que project-detail-modal__close */
}

/* line 306, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__close:hover {
  color: #2f3e85;
  transform: scale(1.1);
}

/* line 311, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__close:active {
  transform: scale(0.95);
}

/* line 317, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__images-container {
  position: relative;
  z-index: 1;
}

/* line 325, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item {
  position: relative;
}

/* line 334, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item-header {
  flex-shrink: 0;
}

/* line 339, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item-image {
  flex-shrink: 0;
}

/* line 342, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item-image img {
  vertical-align: top;
  border-radius: 0 0 8px 8px;
}

/* line 350, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description {
  position: relative;
  z-index: 10;
}

/* line 357, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description:empty {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* line 364, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__overlay {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* line 371, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__content {
    max-width: 95vw;
    max-height: 108vh;
    padding-top: clamp(0px, calc(23.5294vw - 180.941px), 60px) !important;
    padding-bottom: 0 !important;
    padding-right: clamp(14px, calc(2.352941vw - 4.095px), 20px) !important;
    padding-left: clamp(13px, calc(2.745098vw - 8.099px), 20px) !important;
    min-width: auto;
    min-height: auto;
  }
  /* line 385, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__images-container {
    height: auto;
    max-height: 600px;
    min-height: 250px;
    gap: 2px;
  }
  /* line 394, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item .fullscreen-side-by-side-modal__item-header {
    padding: 10px 15px;
  }
  /* line 397, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item .fullscreen-side-by-side-modal__item-header h3 {
    font-size: 1rem;
  }
  /* line 403, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__item .fullscreen-side-by-side-modal__item-image img {
    max-height: 600px;
  }
  /* line 410, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description {
    max-height: 150px;
    min-height: 100px;
    padding: 20px 25px;
  }
  /* line 416, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  /* line 422, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
  .fullscreen-side-by-side-modal__description .description-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8em;
  }
}

/* line 432, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description::-webkit-scrollbar {
  width: 6px;
}

/* line 436, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 441, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* line 445, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* line 462, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.active .fullscreen-side-by-side-modal__content {
  animation: modalSlideIn 0.3s ease-out;
}

/* line 474, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image {
  overflow: hidden;
  cursor: grab;
  position: relative;
}

/* line 479, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image:active {
  cursor: grabbing;
}

/* line 483, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image img {
  transition: transform 0.3s ease;
  cursor: grab;
  position: relative;
  z-index: 1;
}

/* line 489, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image img:active {
  cursor: grabbing;
}

/* line 497, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed img {
  transform-origin: center center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  z-index: 1;
}

/* line 507, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item-image img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
  border-radius: 0 0 8px 8px;
}

/* line 513, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image img {
  cursor: grab;
  border-radius: 0 0 8px 8px;
}

/* line 517, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__item.zoomed .fullscreen-side-by-side-modal__item-image img:active {
  cursor: grabbing;
}

/* line 523, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.zoom-active {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 529, app/assets/stylesheets/_fullscreen_side_by_side_modal.scss */
.fullscreen-side-by-side-modal__overlay.zoom-active * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 2, app/assets/stylesheets/_modal_fade.scss */
.modal-fade {
  position: relative;
  width: 100%;
  height: 400px;
  cursor: pointer;
  display: block;
}

/* line 9, app/assets/stylesheets/_modal_fade.scss */
.modal-fade .fade-image {
  width: 100%;
  height: auto;
  display: block;
  transition: none;
}

/* line 15, app/assets/stylesheets/_modal_fade.scss */
.modal-fade .fade-image--after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 2;
  animation: afterFadeOut 3s ease-in-out infinite alternate;
  animation-fill-mode: both;
  will-change: opacity;
}

/* line 32, app/assets/stylesheets/_modal_fade.scss */
.modal-fade .fade-image--before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 1;
  opacity: 1;
}

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

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

/* line 7, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.project-detail__before-after__fade {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

/* line 14, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.project-detail__before-after__fade .project-detail__before-after.modal-fade {
  cursor: zoom-in;
  transition: all 0.3s ease;
}

/* line 18, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.project-detail__before-after__fade .project-detail__before-after.modal-fade:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* line 26, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

/* line 43, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* line 50, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__content {
  width: auto;
  height: auto;
  max-width: 93vw;
  max-height: 90vh;
  display: flex;
  align-items: flex-start;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 74, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__overlay.active .fullscreen-fade-modal__content {
  transform: scale(1);
}

/* line 80, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.2rem;
  color: #57649d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 12000;
}

/* line 99, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__close:hover {
  color: #2f3e85;
  transform: scale(1.1);
}

/* line 104, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__close:active {
  transform: scale(0.95);
}

/* line 110, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description {
  background: linear-gradient(135deg, #667eea 0%, #b84c4c 100%);
  padding: 40px;
  width: 400px;
  min-width: 350px;
  max-width: 450px;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 134, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description p {
  margin: 0;
  word-wrap: break-word;
  hyphens: auto;
}

/* line 140, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description:empty {
  display: none;
}

/* line 146, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  min-height: 200px;
  max-width: calc(93vw - 400px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 167, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--after,
.fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 182, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--after {
  z-index: 1;
  opacity: 1;
}

/* line 188, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--before {
  z-index: 2;
  opacity: 0;
}

/* line 194, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .label-container {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  pointer-events: none;
}

/* line 201, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .label-container .label {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* line 216, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .label-container .label.label-avant {
  background: rgba(220, 53, 69, 0.9);
}

/* line 220, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .label-container .label.label-apres {
  background: rgba(46, 125, 50, 0.95);
}

/* line 224, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__image-container .label-container .label.visible {
  opacity: 1;
}

@media (max-width: 1024px) {
  /* line 233, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__content {
    flex-direction: column;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }
  /* line 248, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__description {
    width: 100%;
    min-width: auto;
    max-width: none;
    padding: 20px;
    order: 2;
    height: auto;
    max-height: 25vh;
    overflow-y: auto;
    flex-shrink: 0;
    box-sizing: border-box;
    font-size: 0.9rem;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  /* line 273, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__description p {
    margin: 0 0 1em 0;
  }
  /* line 276, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__description p:last-child {
    margin-bottom: 0;
  }
  /* line 282, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container {
    width: auto;
    height: auto;
    min-width: auto;
    max-width: 95vw;
    max-height: 70vh;
    order: 1;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  /* line 302, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--after,
.fullscreen-fade-modal__image-container .fullscreen-fade-modal__image--before {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  /* line 322, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container::after {
    font-size: 0.7rem;
    padding: 6px 12px;
    bottom: 12px;
    right: 12px;
  }
}

/* line 332, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description::-webkit-scrollbar {
  width: 6px;
}

/* line 336, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 341, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* line 345, app/assets/stylesheets/_fullscreen_fade_modal.scss */
.fullscreen-fade-modal__description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1025px) {
  /* line 355, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container.vertical-image {
    height: 100%;
    width: auto;
  }
  /* line 359, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container.vertical-image .fullscreen-fade-modal__image--after,
.fullscreen-fade-modal__image-container.vertical-image .fullscreen-fade-modal__image--before {
    height: 100%;
    width: auto;
    max-height: none;
    max-width: none;
  }
  /* line 371, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container.horizontal-image {
    width: 100%;
    height: auto;
  }
  /* line 375, app/assets/stylesheets/_fullscreen_fade_modal.scss */
  .fullscreen-fade-modal__image-container.horizontal-image .fullscreen-fade-modal__image--after,
.fullscreen-fade-modal__image-container.horizontal-image .fullscreen-fade-modal__image--before {
    width: 100%;
    height: auto;
    max-height: 93vh;
  }
}

/* line 3, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 12px;
  height: auto;
  cursor: zoom-in;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 21, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* Ratio 16:9 plus adaptatif */
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 8px;
  background: #f0f0f0;
}

/* line 32, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 40, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-image--after {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.3s ease;
}

/* line 46, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-image--before {
  z-index: 0;
}

/* line 51, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  animation: sliderAutoMove 4s ease-in-out infinite;
}

/* line 68, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-handle::before, .project-detail__before-after-slider .slider-handle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* line 79, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-handle::before {
  top: calc(50% - 8px);
  left: -12px;
  border-width: 8px 8px 8px 0;
  border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

/* line 87, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-handle::after {
  top: calc(50% - 8px);
  left: 6px;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  /* line 3, app/assets/stylesheets/_modal_slider.scss */
  .project-detail__before-after-slider {
    padding: 10px;
  }
  /* line 99, app/assets/stylesheets/_modal_slider.scss */
  .project-detail__before-after-slider .slider-container {
    padding-bottom: 75%;
  }
  /* line 103, app/assets/stylesheets/_modal_slider.scss */
  .project-detail__before-after-slider .slider-handle {
    width: 3px;
  }
  /* line 106, app/assets/stylesheets/_modal_slider.scss */
  .project-detail__before-after-slider .slider-handle::before, .project-detail__before-after-slider .slider-handle::after {
    border-width: 10px 10px 10px 0;
  }
  /* line 110, app/assets/stylesheets/_modal_slider.scss */
  .project-detail__before-after-slider .slider-handle::before::after, .project-detail__before-after-slider .slider-handle::after::after {
    border-width: 10px 0 10px 10px;
  }
}

@keyframes sliderAutoMove {
  0% {
    left: 20%;
  }
  25% {
    left: 80%;
  }
  50% {
    left: 80%;
  }
  75% {
    left: 20%;
  }
  100% {
    left: 20%;
  }
}

/* line 138, app/assets/stylesheets/_modal_slider.scss */
.project-detail__before-after-slider .slider-image--after {
  animation: sliderClipPath 4s ease-in-out infinite;
}

@keyframes sliderClipPath {
  0% {
    clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
  }
  25% {
    clip-path: polygon(0 0, 80% 0, 80% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 80% 0, 80% 100%, 0 100%);
  }
  75% {
    clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
  }
}

/* line 7, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after__slider {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

/* line 14, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after__slider .project-detail__before-after.modal-slider {
  cursor: zoom-in;
  transition: all 0.3s ease;
}

/* line 18, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after__slider .project-detail__before-after.modal-slider:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* line 26, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* line 41, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 52, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* line 59, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__content {
  width: auto;
  height: auto;
  max-width: 93vw;
  max-height: 90vh;
  position: relative;
  z-index: 11001;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 84, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__content .fullscreen-slider-modal .fullscreen-slider-modal__overlay.active ~ .fullscreen-slider-modal__close,
.fullscreen-slider-modal__content .fullscreen-slider-modal .fullscreen-slider-modal__overlay.active ~ .fullscreen-slider-modal__content {
  transform: scale(1);
}

/* line 91, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.2rem;
  color: #57649d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 12000;
}

/* line 110, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__close:hover {
  color: #2f3e85;
  transform: scale(1.1);
}

/* line 115, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__close:active {
  transform: scale(0.95);
}

/* line 121, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description {
  background: linear-gradient(135deg, #e74c3c 0%, #8e44ad 100%);
  padding: 40px;
  width: 400px;
  min-width: 350px;
  max-width: 450px;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

/* line 152, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description p {
  margin: 0 0 1em 0;
  word-wrap: break-word;
  hyphens: auto;
}

/* line 157, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description p:last-child {
  margin-bottom: 0;
}

/* line 162, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description:empty {
  display: none;
}

/* line 168, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  min-height: 200px;
  max-width: calc(93vw - 400px);
  max-height: 90vh;
  overflow: hidden;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 186, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container .slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 195, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container .slider-wrapper .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 204, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container .slider-wrapper .slider-container .slider-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* line 217, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container .slider-wrapper .slider-container .slider-image--after {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* line 223, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__image-container .slider-wrapper .slider-container .slider-image--before {
  z-index: 0;
}

/* line 231, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

/* line 245, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle:hover {
  width: 3px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* line 252, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle::before, .fullscreen-slider-modal__handle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: all 0.2s ease;
}

/* line 264, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle::before {
  top: calc(50% - 8px);
  left: -10px;
  border-width: 8px 8px 8px 0;
  border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

/* line 272, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle::after {
  top: calc(50% - 8px);
  left: 4px;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

/* line 280, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle:hover::before, .fullscreen-slider-modal__handle:hover::after {
  border-color: transparent white transparent transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.8));
}

/* line 286, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__handle:hover::after {
  border-color: transparent transparent transparent white;
}

@media (max-width: 1024px) {
  /* line 293, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__content {
    flex-direction: column;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }
  /* line 308, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__description {
    width: 100%;
    min-width: auto;
    max-width: none;
    padding: 20px;
    order: 2;
    height: auto;
    max-height: 25vh;
    overflow-y: auto;
    flex-shrink: 0;
    box-sizing: border-box;
    font-size: 0.9rem;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  /* line 331, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__description p {
    margin: 0 0 1em 0;
  }
  /* line 334, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__description p:last-child {
    margin-bottom: 0;
  }
  /* line 340, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container {
    width: auto;
    height: auto;
    min-width: auto;
    max-width: 95vw;
    max-height: 70vh;
    order: 1;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  /* line 359, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* line 367, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container .slider-wrapper .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* line 376, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container .slider-wrapper .slider-container .slider-image {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    image-rendering: -webkit-optimize-contrast;
  }
}

/* line 398, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description::-webkit-scrollbar {
  width: 8px;
}

/* line 402, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 407, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}

/* line 411, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.fullscreen-slider-modal__description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1025px) {
  /* line 420, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container.vertical-image {
    height: 100%;
    width: auto;
  }
  /* line 424, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container.vertical-image .fullscreen-slider-modal__image--after,
.fullscreen-slider-modal__image-container.vertical-image .fullscreen-slider-modal__image--before {
    height: 100%;
    width: auto;
    max-height: none;
    max-width: none;
  }
  /* line 436, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container.horizontal-image {
    width: 100%;
    height: auto;
  }
  /* line 440, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .fullscreen-slider-modal__image-container.horizontal-image .fullscreen-slider-modal__image--after,
.fullscreen-slider-modal__image-container.horizontal-image .fullscreen-slider-modal__image--before {
    width: 100%;
    height: auto;
    max-height: 93vh;
  }
}

/* line 451, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider {
  position: relative;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 460, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 466, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 475, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-image--after {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  z-index: 1;
}

/* line 480, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}

/* line 492, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-handle::before, .project-detail__before-after-slider .slider-handle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  border-style: solid;
}

/* line 503, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-handle::before {
  top: calc(50% - 15px);
  transform: translateX(-8px);
  border-width: 8px 8px 8px 0;
  border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* line 512, app/assets/stylesheets/_fullscreen_slider_modal.scss */
.project-detail__before-after-slider .slider-handle::after {
  top: calc(50% - 15px);
  transform: translateX(0);
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  /* line 451, app/assets/stylesheets/_fullscreen_slider_modal.scss */
  .project-detail__before-after-slider {
    height: 300px;
  }
}

/* line 5, app/assets/stylesheets/_admin_list_headers.scss */
.experience-list__header,
.education-list__header,
.home-section-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

/* line 15, app/assets/stylesheets/_admin_list_headers.scss */
.experience-list__header h2,
.education-list__header h2,
.home-section-list__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.8rem;
}

/* line 21, app/assets/stylesheets/_admin_list_headers.scss */
.experience-list__header .subtitle,
.education-list__header .subtitle,
.home-section-list__header .subtitle {
  color: #202f66;
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
}

/* line 27, app/assets/stylesheets/_admin_list_headers.scss */
.experience-list__header .header-actions,
.education-list__header .header-actions,
.home-section-list__header .header-actions {
  display: flex;
  gap: 0.5rem;
  align-self: center;
}

@media (max-width: 768px) {
  /* line 5, app/assets/stylesheets/_admin_list_headers.scss */
  .experience-list__header,
.education-list__header,
.home-section-list__header {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 38, app/assets/stylesheets/_admin_list_headers.scss */
  .experience-list__header .header-actions,
.education-list__header .header-actions,
.home-section-list__header .header-actions {
    margin-top: 1rem;
    align-self: flex-start;
  }
}

/* line 5, app/assets/stylesheets/_admin_typography.scss */
body.admin-body {
  font-family: "Roboto", sans-serif;
}

/* line 16, app/assets/stylesheets/_admin_typography.scss */
.admin-experience-container h1, .admin-experience-container h2, .admin-experience-container h3, .admin-experience-container h4, .admin-experience-container h5, .admin-experience-container h6,
.admin-experience-container p, .admin-experience-container span, .admin-experience-container div:not(.icon-container),
.admin-experience-container label, .admin-experience-container input, .admin-experience-container textarea, .admin-experience-container select, .admin-experience-container button:not(.icon-container),
.admin-experience-container .form-control, .admin-experience-container .form-select, .admin-experience-container .form-label, .admin-experience-container .form-text,
.admin-experience-container .subtitle, .admin-experience-container .button-text, .admin-experience-container .section-title, .admin-experience-container .section-info,
.admin-education-container h1,
.admin-education-container h2,
.admin-education-container h3,
.admin-education-container h4,
.admin-education-container h5,
.admin-education-container h6,
.admin-education-container p,
.admin-education-container span,
.admin-education-container div:not(.icon-container),
.admin-education-container label,
.admin-education-container input,
.admin-education-container textarea,
.admin-education-container select,
.admin-education-container button:not(.icon-container),
.admin-education-container .form-control,
.admin-education-container .form-select,
.admin-education-container .form-label,
.admin-education-container .form-text,
.admin-education-container .subtitle,
.admin-education-container .button-text,
.admin-education-container .section-title,
.admin-education-container .section-info,
.admin-home-container h1,
.admin-home-container h2,
.admin-home-container h3,
.admin-home-container h4,
.admin-home-container h5,
.admin-home-container h6,
.admin-home-container p,
.admin-home-container span,
.admin-home-container div:not(.icon-container),
.admin-home-container label,
.admin-home-container input,
.admin-home-container textarea,
.admin-home-container select,
.admin-home-container button:not(.icon-container),
.admin-home-container .form-control,
.admin-home-container .form-select,
.admin-home-container .form-label,
.admin-home-container .form-text,
.admin-home-container .subtitle,
.admin-home-container .button-text,
.admin-home-container .section-title,
.admin-home-container .section-info,
.admin-skills-container h1,
.admin-skills-container h2,
.admin-skills-container h3,
.admin-skills-container h4,
.admin-skills-container h5,
.admin-skills-container h6,
.admin-skills-container p,
.admin-skills-container span,
.admin-skills-container div:not(.icon-container),
.admin-skills-container label,
.admin-skills-container input,
.admin-skills-container textarea,
.admin-skills-container select,
.admin-skills-container button:not(.icon-container),
.admin-skills-container .form-control,
.admin-skills-container .form-select,
.admin-skills-container .form-label,
.admin-skills-container .form-text,
.admin-skills-container .subtitle,
.admin-skills-container .button-text,
.admin-skills-container .section-title,
.admin-skills-container .section-info,
.admin-projects-container h1,
.admin-projects-container h2,
.admin-projects-container h3,
.admin-projects-container h4,
.admin-projects-container h5,
.admin-projects-container h6,
.admin-projects-container p,
.admin-projects-container span,
.admin-projects-container div:not(.icon-container),
.admin-projects-container label,
.admin-projects-container input,
.admin-projects-container textarea,
.admin-projects-container select,
.admin-projects-container button:not(.icon-container),
.admin-projects-container .form-control,
.admin-projects-container .form-select,
.admin-projects-container .form-label,
.admin-projects-container .form-text,
.admin-projects-container .subtitle,
.admin-projects-container .button-text,
.admin-projects-container .section-title,
.admin-projects-container .section-info {
  font-family: "Roboto", sans-serif;
}

/* line 26, app/assets/stylesheets/_admin_typography.scss */
.experience-list__header h2,
.education-list__header h2,
.home-section-list__header h2,
.subtitle,
label,
.form-label {
  font-family: "Roboto", sans-serif;
}

/* line 36, app/assets/stylesheets/_admin_typography.scss */
input,
select,
textarea,
button:not(.icon-container),
.form-control,
.form-select {
  font-family: "Roboto", sans-serif;
}

/* line 46, app/assets/stylesheets/_admin_typography.scss */
.experience-list__group-header h3,
.education-list__group-header h3,
.form-group label {
  font-family: "Roboto", sans-serif;
}

/* line 53, app/assets/stylesheets/_admin_typography.scss */
.btn,
.animated-action-button .button-text {
  font-family: "Roboto", sans-serif !important;
}

/* line 59, app/assets/stylesheets/_admin_typography.scss */
.fas, .far, .fab, .fa, [class*="fa-"],
.icon-container i {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900;
}

/* line 65, app/assets/stylesheets/_admin_typography.scss */
.fab {
  font-family: 'Font Awesome 5 Brands' !important;
}

/* line 70, app/assets/stylesheets/_admin_typography.scss */
.animated-action-button .icon-container i {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900;
}

/* line 5, app/assets/stylesheets/_project_images.scss */
.project-images-container {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: center;
}

/* line 15, app/assets/stylesheets/_project_images.scss */
.project-images-container > .row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  justify-items: center;
  align-items: start;
  margin: 0;
}

/* line 25, app/assets/stylesheets/_project_images.scss */
.project-images-container > .row > [class^="col-"],
.project-images-container > .row > [class*=" col-"] {
  float: none;
  width: 100% !important;
  padding: 0 !important;
  max-width: 340px;
  margin: 0 auto;
}

/* line 36, app/assets/stylesheets/_project_images.scss */
.project-images-container.single-image .project-image-card {
  max-width: 100%;
  width: 100%;
}

/* line 43, app/assets/stylesheets/_project_images.scss */
.project-images-container.before-after {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  /* line 43, app/assets/stylesheets/_project_images.scss */
  .project-images-container.before-after {
    grid-template-columns: 1fr;
  }
}

/* line 52, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 65, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 !important;
}

/* line 74, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  margin: 0 auto;
}

/* line 86, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions {
  margin-top: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* line 95, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

/* line 103, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions .action-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: rgba(248, 249, 250, 0.8);
  border: 1px solid #e9ecef;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
}

/* line 117, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions .action-button i {
  font-size: 0.875rem;
}

/* line 121, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions .action-button.view:hover {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-color: rgba(13, 110, 253, 0.2);
  transform: translateY(-2px);
}

/* line 128, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions .action-button.edit:hover {
  background-color: rgba(29, 159, 98, 0.1);
  color: #1d9f62;
  border-color: rgba(29, 159, 98, 0.2);
  transform: translateY(-2px);
}

/* line 135, app/assets/stylesheets/_project_images.scss */
.project-images-container .project-image-card .image-actions .action-button.delete:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

/* line 148, app/assets/stylesheets/_project_images.scss */
.project-detail__carousel-images > .row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

/* line 155, app/assets/stylesheets/_project_images.scss */
.project-detail__carousel-images > .row > [class^="col-"],
.project-detail__carousel-images > .row > [class*=" col-"] {
  float: none;
  width: 100% !important;
  padding: 0 !important;
}

/* line 166, app/assets/stylesheets/_project_images.scss */
.admin-experience-container .experience-list__item,
.admin-experience-container .education-list__item,
.admin-experience-container .form-experience__item,
.admin-experience-container [class*="__item"] {
  transition: none !important;
}

/* line 172, app/assets/stylesheets/_project_images.scss */
.admin-experience-container .experience-list__item:hover,
.admin-experience-container .education-list__item:hover,
.admin-experience-container .form-experience__item:hover,
.admin-experience-container [class*="__item"]:hover {
  transform: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* line 7, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .experience-list__group.mb-4 {
  margin-bottom: 1rem !important;
}

/* line 12, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .experience-list__group + .experience-list__group {
  margin-top: 0;
}

/* line 17, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions,
.admin-experience-container .experience-list__item-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 26, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn,
.admin-experience-container .experience-list__item-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

/* line 39, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn:not(:last-child),
.admin-experience-container .experience-list__item-actions .btn:not(:last-child) {
  margin-right: 1rem;
}

/* line 43, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn.btn-primary, .admin-experience-container .form-actions .btn.btn-edit,
.admin-experience-container .experience-list__item-actions .btn.btn-primary,
.admin-experience-container .experience-list__item-actions .btn.btn-edit {
  background-color: #2b3f8a;
  color: white;
}

/* line 48, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn.btn-primary:hover, .admin-experience-container .form-actions .btn.btn-edit:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-edit:hover {
  background-color: #1f2d63;
}

/* line 53, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn.btn-outline-secondary, .admin-experience-container .form-actions .btn.btn-view,
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-experience-container .experience-list__item-actions .btn.btn-view {
  background-color: transparent;
  color: #202f66;
  border: 1px solid rgba(32, 47, 102, 0.3);
}

/* line 59, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .form-actions .btn.btn-outline-secondary:hover, .admin-experience-container .form-actions .btn.btn-view:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-view:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 67, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .experience-list__item {
  margin-bottom: 24px;
}

/* line 72, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .experience-list__group + .experience-list__group,
.admin-experience-container .experience-list__group.mb-4 + .experience-list__group.mb-4 {
  margin-top: 0 !important;
}

/* line 78, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container .experience-list__group.mb-4 {
  margin-bottom: 0.5rem !important;
}

/* line 83, app/assets/stylesheets/_project_form_spacing.scss */
.admin-experience-container script {
  display: none;
}

/* line 5, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container {
  margin-bottom: 1.5rem;
}

/* line 8, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .text-muted {
  margin-bottom: 0.75rem;
  color: rgba(32, 47, 102, 0.7);
  font-size: 0.9rem;
}

/* line 14, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .current-development-images-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: start;
  width: 100%;
}

/* line 23, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .current-development-images-list .development-image-item {
  background-color: white;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 38, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .current-development-images-list .development-image-item .carousel-thumbnail {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

/* line 47, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .current-development-images-list .development-image-item .actions-cell {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* line 53, app/assets/stylesheets/_project_form_grid.scss */
.current-development-images-container .current-development-images-list .development-image-item .actions-cell .action-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* line 64, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
}

/* line 72, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #2b3f8a;
  color: white;
  margin-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* line 82, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* line 89, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-header .group-actions {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

/* line 97, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-items {
  padding: 24px;
  position: relative;
}

/* line 101, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-items .experience-list__item {
  background-color: rgba(238, 237, 236, 0.15);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 0;
}

/* line 107, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-items .experience-list__item:last-child {
  margin-bottom: 0;
}

/* line 113, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group-items .experience-list__item-body:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* line 122, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__group + .experience-list__group {
  margin-top: 2rem;
}

/* line 128, app/assets/stylesheets/_project_form_grid.scss */
.form {
  background: transparent;
  box-shadow: none;
  position: relative;
  padding-bottom: 0;
}

/* line 134, app/assets/stylesheets/_project_form_grid.scss */
.form .experience-list__group {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 141, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  background-color: rgba(205, 205, 205, 0.4);
  backdrop-filter: blur(2px);
  padding: 1rem;
  width: 100%;
  margin: 0;
  margin-top: auto;
  box-sizing: border-box;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  /* line 141, app/assets/stylesheets/_project_form_grid.scss */
  .experience-list__item-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* line 168, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  min-width: 120px;
}

@media (max-width: 768px) {
  /* line 168, app/assets/stylesheets/_project_form_grid.scss */
  .experience-list__item-actions .btn {
    width: 100%;
  }
}

/* line 185, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions .btn-view {
  background-color: #4a4a4a;
  color: white;
}

/* line 189, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions .btn-view:hover {
  background-color: #313131;
}

/* line 194, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions .btn-edit {
  background-color: #2b3f8a;
  color: white;
}

/* line 198, app/assets/stylesheets/_project_form_grid.scss */
.experience-list__item-actions .btn-edit:hover {
  background-color: #1f2d63;
}

/* line 13, app/assets/stylesheets/_admin_fixes.scss */
.admin-skills-container .experience-list__item,
.admin-skills-container .skill-list__item,
.admin-skills-container [class*="__item"],
.admin-skill-groups-container .experience-list__item,
.admin-skill-groups-container .skill-list__item,
.admin-skill-groups-container [class*="__item"] {
  position: relative;
}

/* line 19, app/assets/stylesheets/_admin_fixes.scss */
.admin-skills-container .experience-list__item .kebab-menu,
.admin-skills-container .skill-list__item .kebab-menu,
.admin-skills-container [class*="__item"] .kebab-menu,
.admin-skill-groups-container .experience-list__item .kebab-menu,
.admin-skill-groups-container .skill-list__item .kebab-menu,
.admin-skill-groups-container [class*="__item"] .kebab-menu {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  z-index: 10 !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* line 33, app/assets/stylesheets/_admin_fixes.scss */
.admin-skills-container .experience-list__item .kebab-menu .dot,
.admin-skills-container .skill-list__item .kebab-menu .dot,
.admin-skills-container [class*="__item"] .kebab-menu .dot,
.admin-skill-groups-container .experience-list__item .kebab-menu .dot,
.admin-skill-groups-container .skill-list__item .kebab-menu .dot,
.admin-skill-groups-container [class*="__item"] .kebab-menu .dot {
  background-color: #2b3f8a !important;
}

/* line 39, app/assets/stylesheets/_admin_fixes.scss */
.admin-skills-container .experience-list__item .item-actions,
.admin-skills-container .experience-list__item .skill-actions,
.admin-skills-container .experience-list__item .action-buttons,
.admin-skills-container .skill-list__item .item-actions,
.admin-skills-container .skill-list__item .skill-actions,
.admin-skills-container .skill-list__item .action-buttons,
.admin-skills-container [class*="__item"] .item-actions,
.admin-skills-container [class*="__item"] .skill-actions,
.admin-skills-container [class*="__item"] .action-buttons,
.admin-skill-groups-container .experience-list__item .item-actions,
.admin-skill-groups-container .experience-list__item .skill-actions,
.admin-skill-groups-container .experience-list__item .action-buttons,
.admin-skill-groups-container .skill-list__item .item-actions,
.admin-skill-groups-container .skill-list__item .skill-actions,
.admin-skill-groups-container .skill-list__item .action-buttons,
.admin-skill-groups-container [class*="__item"] .item-actions,
.admin-skill-groups-container [class*="__item"] .skill-actions,
.admin-skill-groups-container [class*="__item"] .action-buttons {
  display: none !important;
}

/* line 50, app/assets/stylesheets/_admin_fixes.scss */
.admin-skills-container .experience-list__group-items,
.admin-education-container .experience-list__group-items {
  gap: 0 !important;
}

/* line 65, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .kebab-menu,
.admin-home-container .kebab-menu,
.admin-experience-container .kebab-menu,
.admin-education-container .kebab-menu,
.admin-skills-container .kebab-menu,
.admin-projects-container .kebab-menu,
.admin-form-container .kebab-menu {
  border: none !important;
}

/* line 70, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions,
.admin-container .experience-list__item-actions,
.admin-home-container .form-actions,
.admin-home-container .experience-list__item-actions,
.admin-experience-container .form-actions,
.admin-experience-container .experience-list__item-actions,
.admin-education-container .form-actions,
.admin-education-container .experience-list__item-actions,
.admin-skills-container .form-actions,
.admin-skills-container .experience-list__item-actions,
.admin-projects-container .form-actions,
.admin-projects-container .experience-list__item-actions,
.admin-form-container .form-actions,
.admin-form-container .experience-list__item-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 16px;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 80, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn,
.admin-container .form-actions button[type="submit"],
.admin-container .form-actions input[type="submit"],
.admin-container .experience-list__item-actions .btn,
.admin-container .experience-list__item-actions button[type="submit"],
.admin-container .experience-list__item-actions input[type="submit"],
.admin-home-container .form-actions .btn,
.admin-home-container .form-actions button[type="submit"],
.admin-home-container .form-actions input[type="submit"],
.admin-home-container .experience-list__item-actions .btn,
.admin-home-container .experience-list__item-actions button[type="submit"],
.admin-home-container .experience-list__item-actions input[type="submit"],
.admin-experience-container .form-actions .btn,
.admin-experience-container .form-actions button[type="submit"],
.admin-experience-container .form-actions input[type="submit"],
.admin-experience-container .experience-list__item-actions .btn,
.admin-experience-container .experience-list__item-actions button[type="submit"],
.admin-experience-container .experience-list__item-actions input[type="submit"],
.admin-education-container .form-actions .btn,
.admin-education-container .form-actions button[type="submit"],
.admin-education-container .form-actions input[type="submit"],
.admin-education-container .experience-list__item-actions .btn,
.admin-education-container .experience-list__item-actions button[type="submit"],
.admin-education-container .experience-list__item-actions input[type="submit"],
.admin-skills-container .form-actions .btn,
.admin-skills-container .form-actions button[type="submit"],
.admin-skills-container .form-actions input[type="submit"],
.admin-skills-container .experience-list__item-actions .btn,
.admin-skills-container .experience-list__item-actions button[type="submit"],
.admin-skills-container .experience-list__item-actions input[type="submit"],
.admin-projects-container .form-actions .btn,
.admin-projects-container .form-actions button[type="submit"],
.admin-projects-container .form-actions input[type="submit"],
.admin-projects-container .experience-list__item-actions .btn,
.admin-projects-container .experience-list__item-actions button[type="submit"],
.admin-projects-container .experience-list__item-actions input[type="submit"],
.admin-form-container .form-actions .btn,
.admin-form-container .form-actions button[type="submit"],
.admin-form-container .form-actions input[type="submit"],
.admin-form-container .experience-list__item-actions .btn,
.admin-form-container .experience-list__item-actions button[type="submit"],
.admin-form-container .experience-list__item-actions input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

/* line 99, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn:not(:last-child),
.admin-container .form-actions button[type="submit"]:not(:last-child),
.admin-container .form-actions input[type="submit"]:not(:last-child),
.admin-container .experience-list__item-actions .btn:not(:last-child),
.admin-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-home-container .form-actions .btn:not(:last-child),
.admin-home-container .form-actions button[type="submit"]:not(:last-child),
.admin-home-container .form-actions input[type="submit"]:not(:last-child),
.admin-home-container .experience-list__item-actions .btn:not(:last-child),
.admin-home-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-home-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-experience-container .form-actions .btn:not(:last-child),
.admin-experience-container .form-actions button[type="submit"]:not(:last-child),
.admin-experience-container .form-actions input[type="submit"]:not(:last-child),
.admin-experience-container .experience-list__item-actions .btn:not(:last-child),
.admin-experience-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-experience-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-education-container .form-actions .btn:not(:last-child),
.admin-education-container .form-actions button[type="submit"]:not(:last-child),
.admin-education-container .form-actions input[type="submit"]:not(:last-child),
.admin-education-container .experience-list__item-actions .btn:not(:last-child),
.admin-education-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-education-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-skills-container .form-actions .btn:not(:last-child),
.admin-skills-container .form-actions button[type="submit"]:not(:last-child),
.admin-skills-container .form-actions input[type="submit"]:not(:last-child),
.admin-skills-container .experience-list__item-actions .btn:not(:last-child),
.admin-skills-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-skills-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-projects-container .form-actions .btn:not(:last-child),
.admin-projects-container .form-actions button[type="submit"]:not(:last-child),
.admin-projects-container .form-actions input[type="submit"]:not(:last-child),
.admin-projects-container .experience-list__item-actions .btn:not(:last-child),
.admin-projects-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-projects-container .experience-list__item-actions input[type="submit"]:not(:last-child),
.admin-form-container .form-actions .btn:not(:last-child),
.admin-form-container .form-actions button[type="submit"]:not(:last-child),
.admin-form-container .form-actions input[type="submit"]:not(:last-child),
.admin-form-container .experience-list__item-actions .btn:not(:last-child),
.admin-form-container .experience-list__item-actions button[type="submit"]:not(:last-child),
.admin-form-container .experience-list__item-actions input[type="submit"]:not(:last-child) {
  margin-right: 1rem;
}

/* line 104, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn.btn-primary, .admin-container .form-actions .btn.btn-edit, .admin-container .form-actions .btn[type="submit"],
.admin-container .form-actions button.btn-primary[type="submit"],
.admin-container .form-actions button.btn-edit[type="submit"],
.admin-container .form-actions button[type="submit"][type="submit"],
.admin-container .form-actions input.btn-primary[type="submit"],
.admin-container .form-actions input.btn-edit[type="submit"],
.admin-container .form-actions input[type="submit"][type="submit"],
.admin-container .experience-list__item-actions .btn.btn-primary,
.admin-container .experience-list__item-actions .btn.btn-edit,
.admin-container .experience-list__item-actions .btn[type="submit"],
.admin-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-home-container .form-actions .btn.btn-primary,
.admin-home-container .form-actions .btn.btn-edit,
.admin-home-container .form-actions .btn[type="submit"],
.admin-home-container .form-actions button.btn-primary[type="submit"],
.admin-home-container .form-actions button.btn-edit[type="submit"],
.admin-home-container .form-actions button[type="submit"][type="submit"],
.admin-home-container .form-actions input.btn-primary[type="submit"],
.admin-home-container .form-actions input.btn-edit[type="submit"],
.admin-home-container .form-actions input[type="submit"][type="submit"],
.admin-home-container .experience-list__item-actions .btn.btn-primary,
.admin-home-container .experience-list__item-actions .btn.btn-edit,
.admin-home-container .experience-list__item-actions .btn[type="submit"],
.admin-home-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-home-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-home-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-home-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-home-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-home-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-experience-container .form-actions .btn.btn-primary,
.admin-experience-container .form-actions .btn.btn-edit,
.admin-experience-container .form-actions .btn[type="submit"],
.admin-experience-container .form-actions button.btn-primary[type="submit"],
.admin-experience-container .form-actions button.btn-edit[type="submit"],
.admin-experience-container .form-actions button[type="submit"][type="submit"],
.admin-experience-container .form-actions input.btn-primary[type="submit"],
.admin-experience-container .form-actions input.btn-edit[type="submit"],
.admin-experience-container .form-actions input[type="submit"][type="submit"],
.admin-experience-container .experience-list__item-actions .btn.btn-primary,
.admin-experience-container .experience-list__item-actions .btn.btn-edit,
.admin-experience-container .experience-list__item-actions .btn[type="submit"],
.admin-experience-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-experience-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-experience-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-experience-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-experience-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-experience-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-education-container .form-actions .btn.btn-primary,
.admin-education-container .form-actions .btn.btn-edit,
.admin-education-container .form-actions .btn[type="submit"],
.admin-education-container .form-actions button.btn-primary[type="submit"],
.admin-education-container .form-actions button.btn-edit[type="submit"],
.admin-education-container .form-actions button[type="submit"][type="submit"],
.admin-education-container .form-actions input.btn-primary[type="submit"],
.admin-education-container .form-actions input.btn-edit[type="submit"],
.admin-education-container .form-actions input[type="submit"][type="submit"],
.admin-education-container .experience-list__item-actions .btn.btn-primary,
.admin-education-container .experience-list__item-actions .btn.btn-edit,
.admin-education-container .experience-list__item-actions .btn[type="submit"],
.admin-education-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-education-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-education-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-education-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-education-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-education-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-skills-container .form-actions .btn.btn-primary,
.admin-skills-container .form-actions .btn.btn-edit,
.admin-skills-container .form-actions .btn[type="submit"],
.admin-skills-container .form-actions button.btn-primary[type="submit"],
.admin-skills-container .form-actions button.btn-edit[type="submit"],
.admin-skills-container .form-actions button[type="submit"][type="submit"],
.admin-skills-container .form-actions input.btn-primary[type="submit"],
.admin-skills-container .form-actions input.btn-edit[type="submit"],
.admin-skills-container .form-actions input[type="submit"][type="submit"],
.admin-skills-container .experience-list__item-actions .btn.btn-primary,
.admin-skills-container .experience-list__item-actions .btn.btn-edit,
.admin-skills-container .experience-list__item-actions .btn[type="submit"],
.admin-skills-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-skills-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-skills-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-skills-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-skills-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-skills-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-projects-container .form-actions .btn.btn-primary,
.admin-projects-container .form-actions .btn.btn-edit,
.admin-projects-container .form-actions .btn[type="submit"],
.admin-projects-container .form-actions button.btn-primary[type="submit"],
.admin-projects-container .form-actions button.btn-edit[type="submit"],
.admin-projects-container .form-actions button[type="submit"][type="submit"],
.admin-projects-container .form-actions input.btn-primary[type="submit"],
.admin-projects-container .form-actions input.btn-edit[type="submit"],
.admin-projects-container .form-actions input[type="submit"][type="submit"],
.admin-projects-container .experience-list__item-actions .btn.btn-primary,
.admin-projects-container .experience-list__item-actions .btn.btn-edit,
.admin-projects-container .experience-list__item-actions .btn[type="submit"],
.admin-projects-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-projects-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-projects-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-projects-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-projects-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-projects-container .experience-list__item-actions input[type="submit"][type="submit"],
.admin-form-container .form-actions .btn.btn-primary,
.admin-form-container .form-actions .btn.btn-edit,
.admin-form-container .form-actions .btn[type="submit"],
.admin-form-container .form-actions button.btn-primary[type="submit"],
.admin-form-container .form-actions button.btn-edit[type="submit"],
.admin-form-container .form-actions button[type="submit"][type="submit"],
.admin-form-container .form-actions input.btn-primary[type="submit"],
.admin-form-container .form-actions input.btn-edit[type="submit"],
.admin-form-container .form-actions input[type="submit"][type="submit"],
.admin-form-container .experience-list__item-actions .btn.btn-primary,
.admin-form-container .experience-list__item-actions .btn.btn-edit,
.admin-form-container .experience-list__item-actions .btn[type="submit"],
.admin-form-container .experience-list__item-actions button.btn-primary[type="submit"],
.admin-form-container .experience-list__item-actions button.btn-edit[type="submit"],
.admin-form-container .experience-list__item-actions button[type="submit"][type="submit"],
.admin-form-container .experience-list__item-actions input.btn-primary[type="submit"],
.admin-form-container .experience-list__item-actions input.btn-edit[type="submit"],
.admin-form-container .experience-list__item-actions input[type="submit"][type="submit"] {
  background-color: #2b3f8a;
  color: white;
}

/* line 110, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn.btn-primary:hover, .admin-container .form-actions .btn.btn-edit:hover, .admin-container .form-actions .btn[type="submit"]:hover,
.admin-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-home-container .form-actions .btn.btn-primary:hover,
.admin-home-container .form-actions .btn.btn-edit:hover,
.admin-home-container .form-actions .btn[type="submit"]:hover,
.admin-home-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-home-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-home-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-home-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-home-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-home-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-home-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-home-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-home-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-home-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-home-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-home-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-home-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-experience-container .form-actions .btn.btn-primary:hover,
.admin-experience-container .form-actions .btn.btn-edit:hover,
.admin-experience-container .form-actions .btn[type="submit"]:hover,
.admin-experience-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-experience-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-experience-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-experience-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-experience-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-experience-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-experience-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-education-container .form-actions .btn.btn-primary:hover,
.admin-education-container .form-actions .btn.btn-edit:hover,
.admin-education-container .form-actions .btn[type="submit"]:hover,
.admin-education-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-education-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-education-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-education-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-education-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-education-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-education-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-education-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-education-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-education-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-education-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-education-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-education-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-skills-container .form-actions .btn.btn-primary:hover,
.admin-skills-container .form-actions .btn.btn-edit:hover,
.admin-skills-container .form-actions .btn[type="submit"]:hover,
.admin-skills-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-skills-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-skills-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-skills-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-skills-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-skills-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-skills-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-skills-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-skills-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-projects-container .form-actions .btn.btn-primary:hover,
.admin-projects-container .form-actions .btn.btn-edit:hover,
.admin-projects-container .form-actions .btn[type="submit"]:hover,
.admin-projects-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-projects-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-projects-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-projects-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-projects-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-projects-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-projects-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-projects-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-projects-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input[type="submit"][type="submit"]:hover,
.admin-form-container .form-actions .btn.btn-primary:hover,
.admin-form-container .form-actions .btn.btn-edit:hover,
.admin-form-container .form-actions .btn[type="submit"]:hover,
.admin-form-container .form-actions button.btn-primary[type="submit"]:hover,
.admin-form-container .form-actions button.btn-edit[type="submit"]:hover,
.admin-form-container .form-actions button[type="submit"][type="submit"]:hover,
.admin-form-container .form-actions input.btn-primary[type="submit"]:hover,
.admin-form-container .form-actions input.btn-edit[type="submit"]:hover,
.admin-form-container .form-actions input[type="submit"][type="submit"]:hover,
.admin-form-container .experience-list__item-actions .btn.btn-primary:hover,
.admin-form-container .experience-list__item-actions .btn.btn-edit:hover,
.admin-form-container .experience-list__item-actions .btn[type="submit"]:hover,
.admin-form-container .experience-list__item-actions button.btn-primary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions button.btn-edit[type="submit"]:hover,
.admin-form-container .experience-list__item-actions button[type="submit"][type="submit"]:hover,
.admin-form-container .experience-list__item-actions input.btn-primary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions input.btn-edit[type="submit"]:hover,
.admin-form-container .experience-list__item-actions input[type="submit"][type="submit"]:hover {
  background-color: #1f2d63;
}

/* line 116, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn.btn-outline-secondary, .admin-container .form-actions .btn.btn-view, .admin-container .form-actions .btn.btn-secondary,
.admin-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-container .form-actions button.btn-view[type="submit"],
.admin-container .form-actions button.btn-secondary[type="submit"],
.admin-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-container .form-actions input.btn-view[type="submit"],
.admin-container .form-actions input.btn-secondary[type="submit"],
.admin-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-container .experience-list__item-actions .btn.btn-view,
.admin-container .experience-list__item-actions .btn.btn-secondary,
.admin-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-home-container .form-actions .btn.btn-outline-secondary,
.admin-home-container .form-actions .btn.btn-view,
.admin-home-container .form-actions .btn.btn-secondary,
.admin-home-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-home-container .form-actions button.btn-view[type="submit"],
.admin-home-container .form-actions button.btn-secondary[type="submit"],
.admin-home-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-home-container .form-actions input.btn-view[type="submit"],
.admin-home-container .form-actions input.btn-secondary[type="submit"],
.admin-home-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-home-container .experience-list__item-actions .btn.btn-view,
.admin-home-container .experience-list__item-actions .btn.btn-secondary,
.admin-home-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-home-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-home-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-home-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-home-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-home-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-experience-container .form-actions .btn.btn-outline-secondary,
.admin-experience-container .form-actions .btn.btn-view,
.admin-experience-container .form-actions .btn.btn-secondary,
.admin-experience-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-experience-container .form-actions button.btn-view[type="submit"],
.admin-experience-container .form-actions button.btn-secondary[type="submit"],
.admin-experience-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-experience-container .form-actions input.btn-view[type="submit"],
.admin-experience-container .form-actions input.btn-secondary[type="submit"],
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-experience-container .experience-list__item-actions .btn.btn-view,
.admin-experience-container .experience-list__item-actions .btn.btn-secondary,
.admin-experience-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-experience-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-experience-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-experience-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-experience-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-experience-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-education-container .form-actions .btn.btn-outline-secondary,
.admin-education-container .form-actions .btn.btn-view,
.admin-education-container .form-actions .btn.btn-secondary,
.admin-education-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-education-container .form-actions button.btn-view[type="submit"],
.admin-education-container .form-actions button.btn-secondary[type="submit"],
.admin-education-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-education-container .form-actions input.btn-view[type="submit"],
.admin-education-container .form-actions input.btn-secondary[type="submit"],
.admin-education-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-education-container .experience-list__item-actions .btn.btn-view,
.admin-education-container .experience-list__item-actions .btn.btn-secondary,
.admin-education-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-education-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-education-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-education-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-education-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-education-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-skills-container .form-actions .btn.btn-outline-secondary,
.admin-skills-container .form-actions .btn.btn-view,
.admin-skills-container .form-actions .btn.btn-secondary,
.admin-skills-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-skills-container .form-actions button.btn-view[type="submit"],
.admin-skills-container .form-actions button.btn-secondary[type="submit"],
.admin-skills-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-skills-container .form-actions input.btn-view[type="submit"],
.admin-skills-container .form-actions input.btn-secondary[type="submit"],
.admin-skills-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-skills-container .experience-list__item-actions .btn.btn-view,
.admin-skills-container .experience-list__item-actions .btn.btn-secondary,
.admin-skills-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-skills-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-skills-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-skills-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-skills-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-skills-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-projects-container .form-actions .btn.btn-outline-secondary,
.admin-projects-container .form-actions .btn.btn-view,
.admin-projects-container .form-actions .btn.btn-secondary,
.admin-projects-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-projects-container .form-actions button.btn-view[type="submit"],
.admin-projects-container .form-actions button.btn-secondary[type="submit"],
.admin-projects-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-projects-container .form-actions input.btn-view[type="submit"],
.admin-projects-container .form-actions input.btn-secondary[type="submit"],
.admin-projects-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-projects-container .experience-list__item-actions .btn.btn-view,
.admin-projects-container .experience-list__item-actions .btn.btn-secondary,
.admin-projects-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-projects-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-projects-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-projects-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-projects-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-projects-container .experience-list__item-actions input.btn-secondary[type="submit"],
.admin-form-container .form-actions .btn.btn-outline-secondary,
.admin-form-container .form-actions .btn.btn-view,
.admin-form-container .form-actions .btn.btn-secondary,
.admin-form-container .form-actions button.btn-outline-secondary[type="submit"],
.admin-form-container .form-actions button.btn-view[type="submit"],
.admin-form-container .form-actions button.btn-secondary[type="submit"],
.admin-form-container .form-actions input.btn-outline-secondary[type="submit"],
.admin-form-container .form-actions input.btn-view[type="submit"],
.admin-form-container .form-actions input.btn-secondary[type="submit"],
.admin-form-container .experience-list__item-actions .btn.btn-outline-secondary,
.admin-form-container .experience-list__item-actions .btn.btn-view,
.admin-form-container .experience-list__item-actions .btn.btn-secondary,
.admin-form-container .experience-list__item-actions button.btn-outline-secondary[type="submit"],
.admin-form-container .experience-list__item-actions button.btn-view[type="submit"],
.admin-form-container .experience-list__item-actions button.btn-secondary[type="submit"],
.admin-form-container .experience-list__item-actions input.btn-outline-secondary[type="submit"],
.admin-form-container .experience-list__item-actions input.btn-view[type="submit"],
.admin-form-container .experience-list__item-actions input.btn-secondary[type="submit"] {
  background-color: transparent;
  color: #202f66;
  border: 1px solid rgba(32, 47, 102, 0.3);
}

/* line 123, app/assets/stylesheets/_admin_fixes.scss */
.admin-container .form-actions .btn.btn-outline-secondary:hover, .admin-container .form-actions .btn.btn-view:hover, .admin-container .form-actions .btn.btn-secondary:hover,
.admin-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-container .form-actions button.btn-view[type="submit"]:hover,
.admin-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-container .form-actions input.btn-view[type="submit"]:hover,
.admin-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-container .experience-list__item-actions .btn.btn-view:hover,
.admin-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-home-container .form-actions .btn.btn-outline-secondary:hover,
.admin-home-container .form-actions .btn.btn-view:hover,
.admin-home-container .form-actions .btn.btn-secondary:hover,
.admin-home-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-home-container .form-actions button.btn-view[type="submit"]:hover,
.admin-home-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-home-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-home-container .form-actions input.btn-view[type="submit"]:hover,
.admin-home-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-home-container .experience-list__item-actions .btn.btn-view:hover,
.admin-home-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-home-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-home-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-home-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-home-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-experience-container .form-actions .btn.btn-outline-secondary:hover,
.admin-experience-container .form-actions .btn.btn-view:hover,
.admin-experience-container .form-actions .btn.btn-secondary:hover,
.admin-experience-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-experience-container .form-actions button.btn-view[type="submit"]:hover,
.admin-experience-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-experience-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-experience-container .form-actions input.btn-view[type="submit"]:hover,
.admin-experience-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-view:hover,
.admin-experience-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-experience-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-experience-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-education-container .form-actions .btn.btn-outline-secondary:hover,
.admin-education-container .form-actions .btn.btn-view:hover,
.admin-education-container .form-actions .btn.btn-secondary:hover,
.admin-education-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-education-container .form-actions button.btn-view[type="submit"]:hover,
.admin-education-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-education-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-education-container .form-actions input.btn-view[type="submit"]:hover,
.admin-education-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-education-container .experience-list__item-actions .btn.btn-view:hover,
.admin-education-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-education-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-education-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-education-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-education-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-skills-container .form-actions .btn.btn-outline-secondary:hover,
.admin-skills-container .form-actions .btn.btn-view:hover,
.admin-skills-container .form-actions .btn.btn-secondary:hover,
.admin-skills-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-skills-container .form-actions button.btn-view[type="submit"]:hover,
.admin-skills-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-skills-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-skills-container .form-actions input.btn-view[type="submit"]:hover,
.admin-skills-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-skills-container .experience-list__item-actions .btn.btn-view:hover,
.admin-skills-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-skills-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-skills-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-projects-container .form-actions .btn.btn-outline-secondary:hover,
.admin-projects-container .form-actions .btn.btn-view:hover,
.admin-projects-container .form-actions .btn.btn-secondary:hover,
.admin-projects-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-projects-container .form-actions button.btn-view[type="submit"]:hover,
.admin-projects-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-projects-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-projects-container .form-actions input.btn-view[type="submit"]:hover,
.admin-projects-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-projects-container .experience-list__item-actions .btn.btn-view:hover,
.admin-projects-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-projects-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-projects-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover,
.admin-form-container .form-actions .btn.btn-outline-secondary:hover,
.admin-form-container .form-actions .btn.btn-view:hover,
.admin-form-container .form-actions .btn.btn-secondary:hover,
.admin-form-container .form-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-form-container .form-actions button.btn-view[type="submit"]:hover,
.admin-form-container .form-actions button.btn-secondary[type="submit"]:hover,
.admin-form-container .form-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-form-container .form-actions input.btn-view[type="submit"]:hover,
.admin-form-container .form-actions input.btn-secondary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions .btn.btn-outline-secondary:hover,
.admin-form-container .experience-list__item-actions .btn.btn-view:hover,
.admin-form-container .experience-list__item-actions .btn.btn-secondary:hover,
.admin-form-container .experience-list__item-actions button.btn-outline-secondary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions button.btn-view[type="submit"]:hover,
.admin-form-container .experience-list__item-actions button.btn-secondary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions input.btn-outline-secondary[type="submit"]:hover,
.admin-form-container .experience-list__item-actions input.btn-view[type="submit"]:hover,
.admin-form-container .experience-list__item-actions input.btn-secondary[type="submit"]:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 9, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item,
.admin-experience-container .education-list__item,
.admin-experience-container .form-experience__item,
.admin-experience-container [class*="__item"] {
  transition: none !important;
}

/* line 17, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item:hover,
.admin-experience-container .education-list__item:hover,
.admin-experience-container .form-experience__item:hover,
.admin-experience-container [class*="__item"]:hover {
  transform: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(0) !important;
}

/* line 26, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__group.mb-4 {
  margin-bottom: 0.5rem !important;
}

/* line 33, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container h3 {
  color: #2b3f8a;
}

/* line 38, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* line 45, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__group + .experience-list__group,
.admin-experience-container .experience-list__group.mb-4 + .experience-list__group.mb-4 {
  margin-top: 0 !important;
}

/* line 51, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 16px 24px;
  background-color: #2b3f8a;
  border-radius: 0 0 4px 4px;
}

/* line 60, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn {
  min-width: 160px;
  text-align: center;
  margin: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* line 71, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

/* line 86, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn:not(:last-child) {
  margin-right: 1rem;
}

/* line 91, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn.btn-primary, .admin-experience-container .experience-list__item-actions .btn.btn-edit, .admin-experience-container .experience-list__item-actions .btn[type="submit"] {
  background-color: #2b3f8a;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

/* line 101, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn.btn-primary:hover, .admin-experience-container .experience-list__item-actions .btn.btn-edit:hover, .admin-experience-container .experience-list__item-actions .btn[type="submit"]:hover {
  background-color: #1f2d63;
}

/* line 107, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary, .admin-experience-container .experience-list__item-actions .btn.btn-view, .admin-experience-container .experience-list__item-actions .btn.btn-secondary {
  background-color: transparent;
  color: #202f66;
  border: 1px solid rgba(32, 47, 102, 0.3);
}

/* line 114, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn.btn-outline-secondary:hover, .admin-experience-container .experience-list__item-actions .btn.btn-view:hover, .admin-experience-container .experience-list__item-actions .btn.btn-secondary:hover {
  background-color: rgba(32, 47, 102, 0.05);
}

/* line 123, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container script {
  display: none;
}

/* line 129, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .visual-form-container {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px;
  padding: 1rem !important;
  margin-bottom: 1rem !important;
}

/* line 142, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .experience-list__group-items,
body.admin-projects-controller.edit-action .experience-list__group-items {
  padding: 24px !important;
  padding-bottom: 24px !important;
}

/* line 148, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action form[multipart],
body.admin-projects-controller.new-action form.form,
body.admin-projects-controller.new-action .form,
body.admin-projects-controller.edit-action form[multipart],
body.admin-projects-controller.edit-action form.form,
body.admin-projects-controller.edit-action .form {
  padding: 0 !important;
  padding-bottom: 0 !important;
}

/* line 156, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .experience-list__item,
body.admin-projects-controller.edit-action .experience-list__item {
  padding: 24px !important;
  padding-bottom: 24px !important;
}

/* line 163, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .experience-list__group-items,
body.admin-projects-controller.edit-action .experience-list__group-items {
  padding: 24px !important;
  padding-bottom: 24px !important;
}

/* line 169, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .experience-list__group, body.admin-projects-controller.new-action .education-list__group,
body.admin-projects-controller.edit-action .experience-list__group,
body.admin-projects-controller.edit-action .education-list__group {
  overflow: visible !important;
}

/* line 174, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .project-specific-section,
body.admin-projects-controller.edit-action .project-specific-section {
  padding-bottom: 24px !important;
}

/* line 179, app/assets/stylesheets/_project_form_fixes.scss */
body.admin-projects-controller.new-action .experience-list__section-header h3,
body.admin-projects-controller.new-action .experience-list__group-header h3,
body.admin-projects-controller.edit-action .experience-list__section-header h3,
body.admin-projects-controller.edit-action .experience-list__group-header h3 {
  color: #2b3f8a !important;
  font-weight: 700;
  visibility: visible !important;
  opacity: 1 !important;
}

/* line 196, app/assets/stylesheets/_project_form_fixes.scss */
.admin-home-container .form-actions,
.admin-home-container .experience-list__item-actions,
.admin-home-container .form-group .actions,
.admin-home-container .form-section .submit-actions,
.admin-home-container .form-section .button-group,
.admin-experience-container .form-actions,
.admin-experience-container .experience-list__item-actions,
.admin-experience-container .form-group .actions,
.admin-experience-container .form-section .submit-actions,
.admin-experience-container .form-section .button-group,
.admin-education-container .form-actions,
.admin-education-container .experience-list__item-actions,
.admin-education-container .form-group .actions,
.admin-education-container .form-section .submit-actions,
.admin-education-container .form-section .button-group,
.admin-skills-container .form-actions,
.admin-skills-container .experience-list__item-actions,
.admin-skills-container .form-group .actions,
.admin-skills-container .form-section .submit-actions,
.admin-skills-container .form-section .button-group,
.admin-projects-container .form-actions,
.admin-projects-container .experience-list__item-actions,
.admin-projects-container .form-group .actions,
.admin-projects-container .form-section .submit-actions,
.admin-projects-container .form-section .button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 16px;
  border-top: 1px solid rgba(32, 47, 102, 0.1);
}

/* line 209, app/assets/stylesheets/_project_form_fixes.scss */
.admin-home-container .form-actions .btn,
.admin-home-container .experience-list__item-actions .btn,
.admin-home-container .form-group .actions .btn,
.admin-home-container .form-section .submit-actions .btn,
.admin-home-container .form-section .button-group .btn,
.admin-experience-container .form-actions .btn,
.admin-experience-container .experience-list__item-actions .btn,
.admin-experience-container .form-group .actions .btn,
.admin-experience-container .form-section .submit-actions .btn,
.admin-experience-container .form-section .button-group .btn,
.admin-education-container .form-actions .btn,
.admin-education-container .experience-list__item-actions .btn,
.admin-education-container .form-group .actions .btn,
.admin-education-container .form-section .submit-actions .btn,
.admin-education-container .form-section .button-group .btn,
.admin-skills-container .form-actions .btn,
.admin-skills-container .experience-list__item-actions .btn,
.admin-skills-container .form-group .actions .btn,
.admin-skills-container .form-section .submit-actions .btn,
.admin-skills-container .form-section .button-group .btn,
.admin-projects-container .form-actions .btn,
.admin-projects-container .experience-list__item-actions .btn,
.admin-projects-container .form-group .actions .btn,
.admin-projects-container .form-section .submit-actions .btn,
.admin-projects-container .form-section .button-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

/* line 24, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* line 29, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content {
  display: flex !important;
  flex-direction: row !important;
  flex: 1 !important;
}

/* line 34, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail__sidebar {
  order: 1 !important;
  width: 400px !important;
  min-width: 400px !important;
  flex-shrink: 0 !important;
  height: 100% !important;
}

/* line 44, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal:has(.project-detail[data-project-type="development"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  scrollbar-gutter: stable !important;
  padding-right: 10px !important;
}

/* line 51, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal:has(.project-detail[data-project-type="development"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar {
  width: 4px !important;
}

/* line 55, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal:has(.project-detail[data-project-type="development"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-track {
  background: transparent !important;
}

/* line 59, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal:has(.project-detail[data-project-type="development"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-thumb {
  background: #4a9eff !important;
  border-radius: 2px !important;
}

/* line 63, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal:has(.project-detail[data-project-type="development"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-thumb:hover {
  background: #3d8bdb !important;
}

/* line 70, app/assets/stylesheets/_project_detail_modal_development.scss */
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail__carousel {
  order: 2 !important;
  flex: 1 !important;
}

@media (max-width: 1025px) {
  /* line 78, app/assets/stylesheets/_project_detail_modal_development.scss */
  body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content {
    flex-direction: column !important;
  }
  /* line 81, app/assets/stylesheets/_project_detail_modal_development.scss */
  body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail__sidebar {
    order: 2 !important;
    width: 100% !important;
    min-width: auto !important;
  }
  /* line 87, app/assets/stylesheets/_project_detail_modal_development.scss */
  body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail__carousel {
    order: 1 !important;
  }
}

/* line 97, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__header,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__content,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__company,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions,
.project-detail-modal .project-detail[data-project-type="development"] .project-visual-card,
.project-detail-modal .project-detail[data-project-type="development"] .carousel-container,
.project-detail-modal .project-detail[data-project-type="development"] .carousel-track {
  border: none !important;
  outline: none !important;
}

/* line 111, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .carousel-nav,
.project-detail-modal .project-detail[data-project-type="development"] .carousel-indicator,
.project-detail-modal .project-detail[data-project-type="development"] .carousel-counter,
.project-detail-modal .project-detail[data-project-type="development"] .technology-tag {
  border: none !important;
  outline: none !important;
}

/* line 120, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .btn,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__actions .btn {
  border: none !important;
  outline: none !important;
}

/* line 127, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] {
  padding: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

/* line 135, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__header {
  padding: 20px 30px 15px !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #4a9eff !important;
  background: linear-gradient(135deg, #2952bc 0%, #333333 100%) !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  order: 1 !important;
}

/* line 146, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__content {
  background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%) !important;
  padding: 0 !important;
  display: flex !important;
  flex: 1 !important;
  overflow: hidden !important;
  order: 2 !important;
  position: relative !important;
  isolation: isolate !important;
}

/* line 157, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__content > .carousel-indicators {
  position: relative !important;
  z-index: 1 !important;
}

/* line 164, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__title {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* line 172, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

/* line 173, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__header .project-detail__title-row {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  gap: 15px !important;
}

/* line 189, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-category-badge {
  background: linear-gradient(135deg, #4a9eff 0%, #3d8bdb 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3) !important;
  font-weight: 500 !important;
}

/* line 198, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__technologies {
  margin-bottom: 0 !important;
  gap: 8px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

/* line 205, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__technologies .technology-tag {
  background: rgba(74, 158, 255, 0.15) !important;
  color: #7db8ff !important;
  border: 1px solid rgba(74, 158, 255, 0.3) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

/* line 220, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel {
  flex: 1 !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border: none !important;
  margin: 0 !important;
  min-height: 60% !important;
  position: relative !important;
  z-index: 0 !important;
}

/* line 230, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-container {
  height: 60vh !important;
  padding: 30px !important;
  background: transparent !important;
}

@media (min-width: 1200px) {
  /* line 230, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-container {
    height: 65vh !important;
  }
}

/* line 241, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-track {
  border-radius: 12px;
  box-shadow: none !important;
}

/* line 247, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-slide {
  background: transparent !important;
  padding: 0 10px;
  box-sizing: border-box;
}

/* line 254, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-slide img {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(91, 159, 255, 0.3) !important;
  max-width: calc(100% - 20px);
}

/* line 265, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav {
  background: rgba(74, 158, 255, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  width: 45px !important;
  height: 45px !important;
  font-size: 1.3rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* line 273, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav:hover {
  background: #4a9eff !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4) !important;
}

/* line 279, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.prev {
  left: 20px !important;
}

/* line 283, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.next {
  right: 20px !important;
}

/* line 288, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.disabled, .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav[disabled] {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: rgba(128, 128, 128, 0.5) !important;
  border-color: rgba(128, 128, 128, 0.3) !important;
}

/* line 296, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.disabled:hover, .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav[disabled]:hover {
  background: rgba(128, 128, 128, 0.5) !important;
  transform: translateY(-50%) !important;
  box-shadow: none !important;
}

/* line 305, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-indicators {
  margin-top: 50px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 20px !important;
  backdrop-filter: blur(10px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 1 !important;
}

/* line 315, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-indicator {
  width: 12px !important;
  height: 12px !important;
  background: rgba(74, 158, 255, 0.35) !important;
  border: 1px solid rgba(74, 158, 255, 0.5) !important;
  transition: all 0.3s ease !important;
}

/* line 322, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-indicator.active {
  background: #4a9eff !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(74, 158, 255, 0.9) !important;
}

/* line 330, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-counter {
  background: rgba(0, 0, 0, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  backdrop-filter: blur(10px) !important;
}

/* line 345, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar {
  width: 400px !important;
  min-width: 400px !important;
  height: 100% !important;
  max-height: 95vh !important;
  background: linear-gradient(135deg, #2d2d2d 0%, #333333 100%) !important;
  border-left: 0px solid #4a9eff !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  z-index: 20 !important;
}

/* line 363, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__company {
  background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%) !important;
  border: 1px solid #4a9eff !important;
  border-radius: 10px !important;
  margin: 20px 30px !important;
  padding: 20px !important;
}

/* line 370, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__company .company-info {
  gap: 15px !important;
}

/* line 374, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__company .company-logo {
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* line 381, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__company .company-name {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
}

/* line 392, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions {
  background: linear-gradient(135deg, #2952bc 0%, #333333 100%) !important;
  padding: 20px 25px !important;
  margin: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 0 !important;
  width: 100% !important;
  height: auto !important;
  position: relative !important;
  z-index: 20 !important;
}

/* line 408, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description {
  color: #e5e5e5 !important;
  line-height: 1.7 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
  flex: 1 !important;
  overflow-y: auto !important;
  padding-right: 10px !important;
  max-height: 100% !important;
}

/* line 419, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description .description-title {
  color: #4a9eff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin: 0 0 15px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(74, 158, 255, 0.3) !important;
}

/* line 429, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar {
  width: 4px !important;
}

/* line 433, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-track {
  background: transparent !important;
}

/* line 437, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb {
  background: #4a9eff !important;
  border-radius: 2px !important;
}

/* line 441, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb:hover {
  background: #3d8bdb !important;
}

/* line 448, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__desc-actions > .project-detail__actions-container {
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 15px !important;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%) !important;
  border-top: 2px solid rgba(74, 158, 255, 0.3) !important;
  border-radius: 8px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* line 466, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions {
  display: flex !important;
  gap: 15px !important;
  padding-top: 20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  justify-content: center !important;
}

/* line 479, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn {
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
}

/* line 489, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn.btn-primary {
  background: linear-gradient(135deg, #4a9eff 0%, #3d8bdb 100%) !important;
  box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3) !important;
}

/* line 493, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4) !important;
}

/* line 499, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn.btn-secondary {
  background: linear-gradient(135deg, #555555 0%, #666666 100%) !important;
  color: #ffffff !important;
}

/* line 503, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #666666 0%, #777777 100%) !important;
  transform: translateY(-2px) !important;
}

/* line 510, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions > .btn:only-child {
  display: inline-flex !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 0 100% !important;
  justify-content: center !important;
}

/* line 520, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions-container {
  margin-top: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* line 533, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals {
  margin: 20px 30px !important;
}

/* line 536, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals h3 {
  color: #4a9eff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
}

/* line 543, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-visual-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%) !important;
  border: 1px solid #4a9eff !important;
  border-radius: 10px !important;
}

/* line 548, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-visual-card .visual-card-header {
  background: rgba(74, 158, 255, 0.1) !important;
  border-bottom: 1px solid #4a9eff !important;
}

/* line 552, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-visual-card .visual-card-header h4 {
  color: #ffffff !important;
}

/* line 556, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-visual-card .visual-card-header .visual-type-badge {
  background: #4a9eff !important;
}

/* line 561, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-visual-card .visual-description {
  background: rgba(0, 0, 0, 0.2) !important;
  color: #e5e5e5 !important;
  border-bottom: 0px solid #4a9eff !important;
}

/* line 569, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__before-after {
  background: transparent !important;
  padding: 20px !important;
}

/* line 574, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__before-after .project-detail__before-after-item h5 {
  color: #4a9eff !important;
  font-weight: 600 !important;
}

/* line 579, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__before-after .project-detail__before-after-item img {
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* line 587, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__single-image {
  background: transparent !important;
  padding: 20px !important;
}

/* line 591, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__single-image img {
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* line 598, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .no-image,
.project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .no-visuals {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #888888 !important;
  border: 2px dashed rgba(255, 255, 255, 0.1) !important;
}

/* line 610, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .loading {
  color: #e5e5e5 !important;
  background: transparent !important;
}

/* line 614, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .loading i {
  color: #4a9eff !important;
  font-size: 2.5rem !important;
}

/* line 619, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal .project-detail[data-project-type="development"] .loading p {
  color: #e5e5e5 !important;
  margin-top: 15px !important;
}

/* line 632, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__overlay {
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(4px);
}

/* line 638, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
  background-color: #2d2d2d !important;
  border-radius: 16px !important;
  box-shadow: 0 0px 20px 8px rgba(0, 153, 255, 0.5) !important;
  border: 1px solid rgba(89, 216, 238, 0.9) !important;
  height: 100% !important;
  width: 95% !important;
  max-width: 1200px !important;
  max-height: 95vh !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* line 658, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__body {
  flex: 1 !important;
  overflow-y: hidden !important;
  padding: 0 !important;
  max-height: 100% !important;
}

/* line 665, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__body::-webkit-scrollbar {
  width: 8px;
}

/* line 669, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__body::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

/* line 674, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__body::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* line 678, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__body::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* line 686, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal.active:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
  animation: modalSlideInDevelopment 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (max-width: 1025px) {
  /* line 698, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
    width: 95% !important;
    max-height: 92vh !important;
    margin: 2.5vh auto !important;
  }
  /* line 707, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content {
    flex-direction: column !important;
  }
  /* line 711, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__title {
    font-size: 1.4rem !important;
  }
  /* line 717, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-container {
    height: 45vh !important;
    padding: 20px !important;
  }
  /* line 722, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
  /* line 727, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.prev {
    left: 15px !important;
  }
  /* line 731, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-nav.next {
    right: 15px !important;
  }
  /* line 738, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__company {
    margin: 15px 20px !important;
    padding: 15px !important;
  }
  /* line 742, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__company .company-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  /* line 750, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  /* line 757, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    flex: 1 !important;
    overflow-y: auto !important;
    padding-right: 10px !important;
    min-height: 0 !important;
    max-height: 50vh !important;
  }
  /* line 767, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar {
    width: 4px !important;
  }
  /* line 771, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-track {
    background: transparent !important;
  }
  /* line 775, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb {
    background: #4a9eff !important;
    border-radius: 2px !important;
  }
  /* line 782, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__desc-actions > .project-detail__actions-container {
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%) !important;
    border-top: 2px solid rgba(74, 158, 255, 0.3) !important;
    border-radius: 8px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  /* line 800, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions {
    gap: 20px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    margin: 0 -15px !important;
    width: calc(100% + 30px) !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* line 810, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions::-webkit-scrollbar {
    display: none;
  }
  /* line 816, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__desc-actions .project-detail__actions .btn {
    flex: 1 1 0 !important;
    width: 0 !important;
    white-space: nowrap !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
  }
  /* line 831, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals {
    margin: 15px 20px !important;
  }
  /* line 834, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__visuals .project-detail__before-after {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 15px !important;
  }
  /* line 842, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar {
    width: 100% !important;
    min-width: 100% !important;
    border-left: none !important;
    border-top: 1px solid #4a9eff !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  /* line 856, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar .project-detail__company {
    flex-shrink: 0 !important;
  }
  /* line 860, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar .project-detail__desc-actions {
    flex: 1 !important;
    min-height: 0 !important;
  }
  /* line 867, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__description {
    overflow-y: visible !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 1025px) {
  /* line 880, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
    max-width: 1200px !important;
  }
  /* line 887, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content {
    flex-direction: row !important;
  }
  /* line 892, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__sidebar {
    flex: 1 !important;
    min-width: 40% !important;
    max-width: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    border-right: 1px solid #4a9eff !important;
    border-left: none !important;
    border-top: none !important;
    order: 1 !important;
    overflow: hidden !important;
  }
  /* line 906, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel {
    flex: 2 !important;
    min-width: 60% !important;
    order: 2 !important;
  }
}

@media (min-width: 1200px) {
  /* line 920, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
    max-width: 1400px !important;
  }
  /* line 926, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-slide {
    padding: 0 !important;
  }
  /* line 933, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-container {
    height: 65vh !important;
  }
}

@keyframes modalSlideInDevelopment {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

/* line 956, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
  animation: modalSlideInDevelopment 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@media (max-width: 500px) {
  /* line 967, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-track {
    height: 80% !important;
  }
  /* line 971, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-nav.prev,
.project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-nav.next {
    top: 35% !important;
    transform: translateY(0) !important;
  }
  /* line 977, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail__carousel {
    min-height: 0 !important;
    padding-bottom: auto !important;
  }
  /* line 982, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-slide {
    padding: 0 !important;
  }
  /* line 987, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail__desc-actions .project-detail__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
  }
  /* line 994, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail__desc-actions .project-detail__actions .btn {
    width: 100% !important;
  }
}

@media (max-width: 400px) {
  /* line 1005, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content .carousel-counter {
    top: 10px !important;
  }
  /* line 1009, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail__carousel {
    min-height: 0 !important;
    top: 0px !important;
    bottom: 500px !important;
  }
  /* line 1015, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-slide {
    padding: 0 !important;
  }
  /* line 1020, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail__desc-actions .project-detail__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
  }
}

@media (max-width: 1024px) and (min-width: 320px) {
  /* line 1032, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"]
.project-category-badge.badge-development {
    display: none !important;
  }
  /* line 1037, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"]
.project-detail__technologies {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  /* line 1048, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-container {
    padding-bottom: 36px !important;
  }
  /* line 1051, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__carousel .carousel-indicators {
    display: flex !important;
    background: transparent !important;
    border: 0 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    gap: 8px !important;
  }
  /* line 1066, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content > .carousel-indicators {
    display: flex !important;
    background: transparent !important;
    border: 0 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    gap: 8px !important;
    z-index: 1 !important;
  }
}

/* line 24, app/assets/stylesheets/_project_detail_modal_retouche.scss */
body .project-detail-modal .project-detail[data-project-type="retouche"] {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* line 29, app/assets/stylesheets/_project_detail_modal_retouche.scss */
body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content {
  display: flex !important;
  flex-direction: row !important;
  flex: 1 !important;
}

/* line 34, app/assets/stylesheets/_project_detail_modal_retouche.scss */
body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content .project-detail__sidebar {
  order: 1 !important;
  width: 400px !important;
  min-width: 400px !important;
  flex-shrink: 0 !important;
  height: 100% !important;
}

/* line 42, app/assets/stylesheets/_project_detail_modal_retouche.scss */
body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content .project-detail__visuals {
  order: 2 !important;
  flex: 1 !important;
}

@media (max-width: 1025px) {
  /* line 50, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content {
    flex-direction: column !important;
  }
  /* line 53, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content .project-detail__sidebar {
    order: 2 !important;
    width: 100% !important;
    min-width: auto !important;
  }
  /* line 59, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  body .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content .project-detail__visuals {
    order: 1 !important;
  }
}

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

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

/* line 80, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__header,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-visual-card,
.project-detail-modal .project-detail[data-project-type="retouche"] .fullscreen-slider-modal,
.project-detail-modal .project-detail[data-project-type="retouche"] .fullscreen-side-by-side-modal,
.project-detail-modal .project-detail[data-project-type="retouche"] .fullscreen-fade-modal {
  border: none !important;
  outline: none !important;
}

/* line 95, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .slider-nav,
.project-detail-modal .project-detail[data-project-type="retouche"] .side-by-side-nav,
.project-detail-modal .project-detail[data-project-type="retouche"] .fade-nav,
.project-detail-modal .project-detail[data-project-type="retouche"] .technology-tag {
  border: none !important;
  outline: none !important;
}

/* line 104, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .btn,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__actions .btn {
  border: none !important;
  outline: none !important;
}

/* line 111, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] {
  padding: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

/* line 119, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__header {
  padding: 20px 30px 15px !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #ff4a4a !important;
  background: linear-gradient(135deg, #c31a1a 0%, #333333 100%) !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  order: 1 !important;
}

/* line 130, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content {
  background: linear-gradient(135deg, #c31a1a 0%, #333333 70%) !important;
  padding: 0 !important;
  display: flex !important;
  flex: 1 !important;
  overflow: hidden !important;
  order: 2 !important;
}

/* line 140, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__title {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* line 148, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

/* line 149, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__header .project-detail__title-row {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  gap: 15px !important;
}

/* line 165, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-category-badge.badge-retouche {
  background: linear-gradient(135deg, #f76060 0%, #db3d3d 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(255, 91, 138, 0.3) !important;
  font-weight: 500 !important;
}

/* line 174, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__technologies {
  margin-bottom: 0 !important;
  gap: 8px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

/* line 181, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__technologies .technology-tag {
  background: rgba(255, 91, 138, 0.15) !important;
  color: #ffb3d1 !important;
  border: 1px solid rgba(255, 91, 138, 0.3) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

/* line 196, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals {
  flex: 1 !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border: none !important;
  margin: 0 !important;
  min-height: 60% !important;
  padding: 30px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* line 207, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals h3 {
  color: #f76060 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin: 0 0 15px 0 !important;
}

@media (min-width: 1025px) {
  /* line 207, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals h3 {
    margin-bottom: 10px !important;
  }
}

@media (min-width: 500px) {
  /* line 207, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals h3 {
    margin-bottom: 5px !important;
  }
}

/* line 223, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__single-image {
  background: transparent !important;
  padding: 20px !important;
  height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

@media (min-width: 1200px) {
  /* line 223, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__single-image {
    height: 65vh !important;
  }
}

@media (max-width: 768px) {
  /* line 223, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__single-image {
    height: 50vh !important;
    padding: 15px !important;
  }
}

@media (max-width: 500px) {
  /* line 223, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__single-image {
    height: 40vh !important;
    padding: 10px !important;
  }
}

/* line 248, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__single-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(255, 91, 138, 0.3) !important;
  cursor: zoom-in !important;
  z-index: 1 !important;
  position: relative !important;
}

/* line 261, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel {
  flex: 1 !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border: none !important;
  margin: 0 !important;
  min-height: 60% !important;
  position: relative !important;
  overflow: visible !important;
  z-index: 0 !important;
}

/* line 272, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-container {
  height: 60vh !important;
  padding: 30px !important;
  background: transparent !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
}

@media (min-width: 1200px) {
  /* line 272, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-container {
    height: 65vh !important;
  }
}

/* line 287, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-track {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.3s ease !important;
  border-radius: 12px;
  box-shadow: none !important;
}

/* line 296, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-slide {
  min-width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  padding: 0 10px;
  box-sizing: border-box;
}

/* line 306, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-slide img {
  max-width: calc(100% - 20px);
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(255, 91, 138, 0.3) !important;
  cursor: zoom-in !important;
}

/* line 317, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background: rgba(247, 96, 96, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 1.3rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 10 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* line 336, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav:hover {
  background: #f76060 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 5px 15px rgba(247, 96, 96, 0.4) !important;
}

/* line 342, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav.prev {
  left: 20px !important;
}

/* line 346, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav.next {
  right: 20px !important;
}

/* line 351, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav.disabled, .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav[disabled] {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: rgba(128, 128, 128, 0.5) !important;
  border-color: rgba(128, 128, 128, 0.3) !important;
}

/* line 359, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav.disabled:hover, .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-nav[disabled]:hover {
  background: rgba(128, 128, 128, 0.5) !important;
  transform: translateY(-50%) !important;
  box-shadow: none !important;
}

/* line 368, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-indicators {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 20px !important;
  backdrop-filter: blur(10px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  width: calc(100% + 60px) !important;
  margin-left: -30px !important;
  margin-right: -30px !important;
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 1025px) {
  /* line 387, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-indicators {
    display: none !important;
  }
  /* line 388, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-container {
    padding: 10px !important;
    height: 52vh !important;
  }
}

@media (max-width: 500px) {
  /* line 394, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-container {
    padding: none !important;
    height: 38vh !important;
  }
}

/* line 399, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-indicator {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: rgba(247, 96, 96, 0.35) !important;
  border: 1px solid rgba(247, 96, 96, 0.5) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

/* line 408, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-indicator.active {
  background: #f76060 !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(247, 96, 96, 0.9) !important;
}

/* line 416, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-counter {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: rgba(0, 0, 0, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  backdrop-filter: blur(10px) !important;
  font-size: 12px !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

/* line 434, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side {
  background: transparent !important;
  padding: 20px !important;
  height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  cursor: zoom-in !important;
}

@media (min-width: 1200px) {
  /* line 434, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side {
    height: 65vh !important;
  }
}

@media (max-width: 1025px) {
  /* line 434, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side {
    height: 50vh !important;
    padding: 15px !important;
  }
}

@media (max-width: 768px) {
  /* line 434, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side {
    height: 40vh !important;
    padding: 10px !important;
  }
}

/* line 461, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side .side-by-side-wrapper {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

/* line 471, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side .image-half-container {
  width: 50% !important;
  height: 100% !important;
  overflow: hidden !important;
  position: relative !important;
}

/* line 479, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side .image-half {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform 0.5s ease-in-out !important;
  transform-origin: center center !important;
}

/* line 490, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side .separator {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 2px !important;
  background-color: white !important;
  z-index: 10 !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) !important;
}

/* line 503, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side.zoomed .image-half {
  transform: scale(1) !important;
}

/* line 508, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side.dezoomed .image-half {
  transform: scale(3) !important;
}

/* line 513, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-side-by-side .image-half {
  transform: scale(1) !important;
}

/* line 519, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 75vh !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* line 533, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .project-detail__before-after.modal-fade {
  background: transparent !important;
  padding: 0 !important;
  height: 50vh !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative !important;
  display: block !important;
  cursor: zoom-in !important;
}

/* line 545, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .fade-image {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: none !important;
}

/* line 557, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .fade-image.fade-image--after {
  z-index: 2 !important;
}

/* line 558, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .fade-image.fade-image--before {
  z-index: 1 !important;
  opacity: 1 !important;
}

@media (min-width: 1025px) and (max-width: 3840px) {
  /* line 562, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .project-detail__before-after.modal-fade {
    height: 75vh !important;
  }
}

@media (max-width: 768px) {
  /* line 566, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .project-detail__before-after.modal-fade {
    height: 50vh !important;
  }
}

@media (max-width: 500px) {
  /* line 570, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after__fade .project-detail__before-after.modal-fade {
    height: 35vh !important;
  }
}

/* line 575, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade {
  background: transparent !important;
  padding: 0 !important;
  height: 50vh !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative !important;
  display: block !important;
  cursor: zoom-in !important;
}

/* line 587, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade .fade-image {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: none !important;
}

/* line 600, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade .fade-image.fade-image--after {
  z-index: 2 !important;
  animation: afterFadeOut 3s ease-in-out infinite alternate !important;
  animation-fill-mode: both !important;
  will-change: opacity !important;
}

/* line 606, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade .fade-image.fade-image--before {
  z-index: 1 !important;
  opacity: 1 !important;
  animation: none !important;
}

@media (min-width: 1025px) and (max-width: 3840px) {
  /* line 615, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade {
    height: 75vh !important;
  }
}

@media (max-width: 768px) {
  /* line 619, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade {
    height: 50vh !important;
  }
}

@media (max-width: 500px) {
  /* line 623, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after.modal-fade {
    height: 35vh !important;
  }
}

/* line 627, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 50vh !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* line 640, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider .slider-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

/* line 650, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider .slider-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* line 656, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider .slider-handle {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6) !important;
}

@media (min-width: 1025px) and (max-width: 3840px) {
  /* line 662, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider {
    height: 75vh !important;
  }
}

@media (max-width: 768px) {
  /* line 668, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider {
    height: 50vh !important;
  }
}

@media (max-width: 500px) {
  /* line 674, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after-slider {
    height: 35vh !important;
  }
}

/* line 680, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-visual-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%) !important;
  border: 1px solid #ff4a4a !important;
  border-radius: 10px !important;
  margin-bottom: 20px !important;
}

/* line 686, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-visual-card .visual-card-header {
  background: rgba(255, 91, 138, 0.1) !important;
  border-bottom: 1px solid #ff4a4a !important;
  padding: 15px 20px !important;
}

/* line 691, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-visual-card .visual-card-header h4 {
  color: #ffffff !important;
  margin: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

/* line 698, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-visual-card .visual-card-header .visual-type-badge {
  background: #f76060 !important;
  color: white !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  margin-left: 10px !important;
}

/* line 709, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-visual-card .visual-description {
  background: rgba(0, 0, 0, 0.2) !important;
  color: #e5e5e5 !important;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  border-bottom: 0px solid #ff4a4a !important;
}

/* line 719, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .no-image,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .no-visuals {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #888888 !important;
  border: 2px dashed rgba(255, 255, 255, 0.1) !important;
  padding: 40px !important;
  text-align: center !important;
  border-radius: 8px !important;
}

/* line 734, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals {
  padding: 0 !important;
  margin-bottom: 20px !important;
}

/* line 738, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals .project-detail__single-image {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 75vh !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative !important;
  cursor: zoom-in !important;
  display: block !important;
}

/* line 754, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals .project-detail__single-image > img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: modalCinematicMainImage 9s infinite ease-out !important;
  will-change: transform, opacity !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform: translateZ(0) !important;
}

@media (min-width: 501px) and (max-width: 1024px) {
  /* line 775, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals .project-detail__single-image {
    height: 5vh !important;
  }
}

@media (max-width: 768px) {
  /* line 782, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals .project-detail__single-image {
    height: 50vh !important;
  }
}

@media (max-width: 500px) {
  /* line 789, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail[data-project-type="retouche"][data-visual-type="single"][data-display-method="standard"] .project-detail__visuals .project-detail__single-image {
    height: 35vh !important;
  }
}

@keyframes modalCinematicMainImage {
  0%, 65% {
    opacity: 0;
    transform: scale(1.3);
  }
  66% {
    opacity: 1;
    transform: scale(1.3);
  }
  98% {
    opacity: 1;
    transform: scale(0.9);
  }
  99% {
    opacity: 1;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes modalCinematicTravellingHorizontal {
  0% {
    opacity: 0;
    transform: scale(2) translateX(30%);
  }
  1% {
    opacity: 1;
    transform: scale(2) translateX(30%);
  }
  32% {
    opacity: 1;
    transform: scale(2) translateX(-30%);
  }
  33% {
    opacity: 1;
    transform: scale(2) translateX(-30%);
  }
  34%, 100% {
    opacity: 0;
    transform: scale(2) translateX(-30%);
  }
}

@keyframes modalCinematicTravellingVertical {
  0%, 32% {
    opacity: 0;
    transform: scale(1.5) translateY(20%);
  }
  33% {
    opacity: 1;
    transform: scale(1.5) translateY(20%);
  }
  65% {
    opacity: 1;
    transform: scale(1.5) translateY(-20%);
  }
  66% {
    opacity: 1;
    transform: scale(1.5) translateY(-20%);
  }
  67%, 100% {
    opacity: 0;
    transform: scale(1.5) translateY(-20%);
  }
}

/* line 871, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar {
  width: 400px !important;
  min-width: 400px !important;
  height: 400px !important;
  max-height: 95vh !important;
  background: linear-gradient(135deg, #c31a1a 0%, #333333 100%) !important !important;
  border-left: 0px solid #ff4a4a !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* line 884, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #ff4a4a !important;
  border-radius: 10px !important;
  margin: 20px 20px !important;
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* line 893, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-info {
  gap: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  /* stack logo + name to mimic logo-only */
  align-items: center !important;
  justify-content: center !important;
  overflow-x: auto !important;
  /* ensure long names remain fully visible */
  -webkit-overflow-scrolling: touch !important;
}

/* line 903, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-logo {
  /* Tailles et positionnement - Logo plus grand par défaut */
  width: 200px !important;
  max-width: 200px !important;
  height: auto !important;
  min-height: auto !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  /* Suppression des éléments opaques */
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  /* Amélioration de la qualité d'image - Anti-pixelisation */
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: -moz-crisp-edges !important;
  image-rendering: crisp-edges !important;
  image-rendering: high-quality !important;
  -ms-interpolation-mode: bicubic !important;
  /* Lissage et netteté */
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  backface-visibility: hidden !important;
  transform: translateZ(0) !important;
  /* Optimisation pour les écrans haute résolution */
  will-change: transform !important;
  /* Ombre qui suit l'alpha du PNG */
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
  -webkit-filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
}

/* line 941, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-name {
  color: #1a1a1a !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  /* no line breaks */
  overflow: visible !important;
  /* do not clip text */
  text-overflow: clip !important;
  /* no ellipsis */
  max-width: 100% !important;
  /* respect container width */
  display: inline-block !important;
  /* allow intrinsic width */
}

/* line 957, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions {
  background: linear-gradient(135deg, #c31a1a 0%, #333333 100%) !important;
  border-top: 1px solid #ff4a4a !important;
  padding: 20px !important;
  margin: 0 !important;
  margin-right: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  width: 100% !important;
  position: relative !important;
  z-index: 20 !important;
}

/* line 972, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description {
  color: #e5e5e5 !important;
  line-height: 1.7 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
  flex: 1 !important;
  overflow-y: auto !important;
  padding-right: 10px !important;
  max-height: calc(100% - 10px) !important;
}

/* line 983, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description .description-title {
  color: #f76060 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin: 0 0 15px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(255, 91, 138, 0.3) !important;
}

/* line 993, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar {
  width: 4px !important;
}

/* line 997, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-track {
  background: transparent !important;
}

/* line 1001, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb {
  background: #f76060 !important;
  border-radius: 2px !important;
}

/* line 1005, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb:hover {
  background: #db3d3d !important;
}

/* line 1012, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions {
  display: flex !important;
  gap: 15px !important;
  padding-top: 20px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  justify-content: center !important;
}

/* line 1022, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn {
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
}

/* line 1032, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn.btn-primary {
  background: linear-gradient(135deg, #f76060 0%, #db3d3d 100%) !important;
  box-shadow: 0 4px 12px rgba(255, 91, 138, 0.3) !important;
}

/* line 1036, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 91, 138, 0.4) !important;
}

/* line 1042, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn.btn-secondary {
  background: linear-gradient(135deg, #555555 0%, #666666 100%) !important;
  color: #ffffff !important;
}

/* line 1046, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #666666 0%, #777777 100%) !important;
  transform: translateY(-2px) !important;
}

/* line 1056, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .loading {
  color: #e5e5e5 !important;
  background: transparent !important;
}

/* line 1060, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .loading i {
  color: #f76060 !important;
  font-size: 2.5rem !important;
}

/* line 1065, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal .project-detail[data-project-type="retouche"] .loading p {
  color: #e5e5e5 !important;
  margin-top: 15px !important;
}

/* line 1078, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__overlay {
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(4px);
}

/* line 1084, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
  background-color: #2d2d2d !important;
  border-radius: 16px !important;
  box-shadow: 0 0px 20px 8px rgba(255, 91, 91, 0.5) !important;
  border: 1px solid rgba(255, 91, 91, 0.9) !important;
  height: 100% !important;
  width: 95% !important;
  max-width: 1200px !important;
  max-height: 95vh !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* line 1104, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__body {
  flex: 1 !important;
  overflow-y: hidden !important;
  padding: 0 !important;
  max-height: 100% !important;
}

/* line 1111, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__body::-webkit-scrollbar {
  width: 8px;
}

/* line 1115, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__body::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

/* line 1120, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__body::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* line 1124, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__body::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* line 1132, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal.active:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
  animation: modalSlideInRetouche 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* line 1143, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* line 1149, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__image-container {
  background: transparent !important;
}

/* line 1153, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .slider-wrapper,
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .slider-wrapper .slider-container {
  background: transparent !important;
}

/* line 1159, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal-container {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}

/* line 1166, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-container {
  background: transparent !important;
}

/* line 1171, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-right: 10px !important;
}

/* line 1176, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar {
  width: 4px !important;
}

/* line 1180, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-track {
  background: transparent !important;
}

/* line 1184, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-thumb {
  background: #f76060 !important;
  border-radius: 2px !important;
}

/* line 1188, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-slider-modal .fullscreen-slider-modal__description::-webkit-scrollbar-thumb:hover {
  background: #db3d3d !important;
}

/* line 1199, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-fade-modal__overlay .fullscreen-fade-modal__content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* line 1207, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-fade-modal__overlay .fullscreen-fade-modal__image-container {
  background: transparent !important;
}

/* line 1211, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) ~ .fullscreen-fade-modal__overlay .fullscreen-fade-modal__description {
  background: linear-gradient(135deg, #c31a1a 0%, #333333 100%) !important !important;
  color: #ffffff !important;
}

@media (max-width: 1025px) {
  /* line 1223, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
    width: 95% !important;
    max-height: 92vh !important;
    margin: 2.5vh auto !important;
  }
  /* line 1232, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content {
    flex-direction: column !important;
  }
  /* line 1236, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__title {
    font-size: 1.4rem !important;
  }
  /* line 1241, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals {
    padding: 20px !important;
    min-height: 60vh !important;
  }
  /* line 1250, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__before-after {
    height: 50vh !important;
    padding: 15px !important;
    gap: 15px !important;
  }
  /* line 1258, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company {
    margin: 10px 12px !important;
    padding: 10px !important;
  }
  /* line 1262, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-info {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  /* line 1270, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-info:has(.company-name) .company-logo {
    width: 60px !important;
    max-width: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }
  /* line 1277, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-info:has(.company-name) .company-name {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    flex: 1 !important;
    text-align: left !important;
  }
  /* line 1287, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-info:not(:has(.company-name)) {
    justify-content: center !important;
  }
  /* line 1291, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-logo {
    /* Amélioration qualité mobile */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: -moz-crisp-edges !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    -ms-interpolation-mode: bicubic !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
  }
  /* line 1303, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__company .company-name {
    font-size: 1rem !important;
    margin-top: 0 !important;
  }
  /* line 1310, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  /* line 1316, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    margin-right: 20px !important;
    flex: 1 !important;
    overflow-y: auto !important;
    padding-right: 10px !important;
    min-height: 0 !important;
    max-height: 50vh !important;
  }
  /* line 1327, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar {
    width: 4px !important;
  }
  /* line 1331, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-track {
    background: transparent !important;
  }
  /* line 1335, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__description::-webkit-scrollbar-thumb {
    background: #f76060 !important;
    border-radius: 2px !important;
  }
  /* line 1341, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions {
    gap: 10px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    margin: 0 -15px !important;
    padding: 0 15px 8px !important;
    width: calc(100% + 30px) !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* line 1352, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions::-webkit-scrollbar {
    display: none;
  }
  /* line 1358, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__desc-actions .project-detail__actions .btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
  }
  /* line 1372, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar {
    width: 100% !important;
    min-width: 100% !important;
    border-left: none !important;
    border-top: 1px solid #ff4a4a !important;
    display: flex !important;
    flex-direction: row !important;
    flex: 1 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  /* line 1386, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company {
    flex: 0 0 30% !important;
    flex-shrink: 0 !important;
    border-right: 1px solid #ff4a4a !important;
    align-self: center !important;
    height: auto !important;
  }
  /* line 1395, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-info:has(.company-name) .company-logo {
    width: 60px !important;
    max-width: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }
  /* line 1405, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__desc-actions {
    flex: 1 !important;
    min-height: 0 !important;
    margin-right: 0 !important;
  }
  /* line 1410, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__desc-actions .project-detail__description {
    margin-right: 0 !important;
  }
}

@media (min-width: 1025px) {
  /* line 1424, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
    max-width: 1200px !important;
  }
  /* line 1431, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__content {
    flex-direction: row !important;
  }
  /* line 1436, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar {
    flex: 1 !important;
    min-width: 40% !important;
    max-width: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    border-right: 1px solid #ff4a4a !important;
    border-left: none !important;
    border-top: none !important;
    order: 1 !important;
    overflow: hidden !important;
  }
  /* line 1450, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals {
    flex: 2 !important;
    min-width: 60% !important;
    order: 2 !important;
  }
}

@media (max-width: 500px) {
  /* line 1465, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar {
    flex-direction: column !important;
  }
  /* line 1468, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company {
    flex: 0 0 auto !important;
    width: 97% !important;
    border-right: none !important;
    border-bottom: 1px solid #ff4a4a !important;
    padding: 10px 15px !important;
    margin: 10px 15px !important;
  }
  /* line 1476, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-info {
    gap: 10px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  /* line 1484, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-info:has(.company-name) .company-logo {
    width: 60px !important;
    max-width: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }
  /* line 1494, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-info:not(:has(.company-name)) {
    justify-content: center !important;
  }
  /* line 1497, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-info:not(:has(.company-name)) .company-logo {
    width: 200px !important;
    max-width: 200px !important;
    min-height: auto !important;
    max-height: none !important;
  }
  /* line 1506, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company:not(:has(.company-name)) {
    padding: 5px 10px !important;
    margin: 5px 10px !important;
    min-height: auto !important;
  }
  /* line 1512, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-logo {
    min-height: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    max-width: 80px !important;
    flex-shrink: 0 !important;
  }
  /* line 1520, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__company .company-name {
    font-size: 0.9rem !important;
    margin: 0 !important;
    text-align: left !important;
    flex: 1 !important;
  }
  /* line 1528, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__sidebar .project-detail__desc-actions {
    flex: 1 !important;
    min-height: 0 !important;
  }
}

@media (min-width: 1025px) and (max-width: 3840px) {
  /* line 1542, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
    max-width: 1400px !important;
  }
}

@keyframes cinematicTravellingVertical {
  0%, 65% {
    opacity: 0;
    transform: scale(2) translateY(10%);
  }
  66% {
    opacity: 0.5;
    transform: scale(2) translateY(10%);
  }
  68% {
    opacity: 0.9;
    transform: scale(2) translateY(10%);
  }
  70% {
    opacity: 1;
    transform: scale(2) translateY(10%);
  }
  95% {
    opacity: 1;
    transform: scale(2) translateY(-10%);
  }
  98% {
    opacity: 0.3;
    transform: scale(2) translateY(-10%);
  }
  100% {
    opacity: 0;
    transform: scale(2) translateY(-10%);
  }
}

@media (max-width: 500px) {
  /* line 1608, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail__visuals {
    min-height: 45vh !important;
    padding: 15px !important;
  }
  /* line 1617, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail__visuals .project-detail__before-after {
    height: 40vh !important;
    padding: 10px !important;
    gap: 10px !important;
  }
  /* line 1625, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail__desc-actions .project-detail__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
  }
  /* line 1632, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail__desc-actions .project-detail__actions .btn {
    width: 100% !important;
  }
}

@media (max-width: 1024px) and (min-width: 320px) {
  /* line 1671, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"]
.project-category-badge.badge-retouche {
    display: none !important;
  }
  /* line 1676, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"]
.project-detail__technologies {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  /* line 1689, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__visuals .project-detail__carousel .carousel-indicators {
    display: flex !important;
    background: transparent !important;
    border: 0 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    gap: 8px !important;
  }
}

/* line 16, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay noir comme les autres modales */
  background: rgba(0, 0, 0, 0.85) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  z-index: 10000;
}

/* line 32, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal.active {
  opacity: 1;
  visibility: visible;
}

/* line 38, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pas de fond ni padding pour éviter toute carte blanche */
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* line 52, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .image-container {
  position: relative;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

/* line 65, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .image-container img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  transform: scale(1.1);
  transition: transform 0.1s ease-out;
  will-change: transform;
  cursor: move;
}

/* line 82, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #dc2626, #b21d1d);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

/* line 100, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') center/contain no-repeat;
}

/* line 108, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  transform: translate(-50%, -50%);
  animation: pulse-halo 2s ease-in-out infinite;
}

/* line 121, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger:hover {
  transform: translateX(-50%) scale(1.1);
  background: linear-gradient(135deg, #e03c3c, #dc2626);
}

/* line 126, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger.active {
  opacity: 0.5;
  pointer-events: none;
}

/* line 133, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 500px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
  color: white;
  transform-origin: 50% 100%;
  z-index: 10001;
}

/* line 151, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container.hidden {
  transform: translateX(-50%) scale(0) translateY(50px);
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 159, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container.visible {
  transform: translateX(-50%) scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 168, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 183, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close::before, .simple-image-modal__content .description-container .description-close::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: white;
}

/* line 192, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close::before {
  transform: rotate(45deg);
}

/* line 196, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close::after {
  transform: rotate(-45deg);
}

/* line 200, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* line 207, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description {
  font-size: 1rem;
  line-height: 1.7;
  max-height: 300px;
  overflow-y: auto;
  color: white;
  padding: 0;
  background: none;
  border-left: none;
  border-radius: none;
  margin-top: 0px;
  flex-shrink: 0;
}

/* line 223, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description::-webkit-scrollbar {
  width: 6px;
}

/* line 227, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* line 232, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* line 236, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* line 241, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description h3, .simple-image-modal__content .description-container .project-visual-card__description h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: white;
}

/* line 248, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description p {
  margin: 0 0 1em 0;
  color: white;
}

/* line 252, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description p:last-child {
  margin-bottom: 0;
}

@keyframes pulse-halo {
  0%, 100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  50% {
    width: 150%;
    height: 150%;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  /* line 279, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .image-container {
    max-width: 95vw;
    max-height: 70vh;
  }
  /* line 284, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-container {
    width: 90vw;
    bottom: 80px;
    padding: 20px;
  }
  /* line 289, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-container .project-visual-card__description {
    font-size: 0.9rem;
    max-height: 200px;
  }
  /* line 295, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-trigger {
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  /* line 300, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-trigger::before {
    width: 25px;
    height: 25px;
  }
}

/* line 4, app/assets/stylesheets/_legal.scss */
body.legal-page-active,
body.cookies-page-active,
body.privacy-page-active {
  background-color: transparent !important;
}

/* line 9, app/assets/stylesheets/_legal.scss */
body.legal-page-active .code-transition,
body.legal-page-active .reveal-transition,
body.cookies-page-active .code-transition,
body.cookies-page-active .reveal-transition,
body.privacy-page-active .code-transition,
body.privacy-page-active .reveal-transition {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* line 17, app/assets/stylesheets/_legal.scss */
body.legal-page-active::after,
body.cookies-page-active::after,
body.privacy-page-active::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(76, 180, 255, 0.3);
  z-index: 500;
  pointer-events: none;
}

/* line 30, app/assets/stylesheets/_legal.scss */
.section-legal,
.section-cookies,
.section-privacy {
  min-height: 100vh;
  padding: 100px 0 80px;
  position: relative;
  background-color: transparent;
  z-index: 1000;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  /* line 30, app/assets/stylesheets/_legal.scss */
  .section-legal,
.section-cookies,
.section-privacy {
    /* Plus d'espace haut/bas pour la lisibilité et éviter tout recouvrement par le footer */
    padding: 90px 0 140px;
  }
}

/* line 50, app/assets/stylesheets/_legal.scss */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1001;
  color: #2f2f2f;
}

/* line 63, app/assets/stylesheets/_legal.scss */
.legal-content > p {
  color: #2f2f2f;
  margin: 0 0 20px;
  opacity: 1;
}

/* line 70, app/assets/stylesheets/_legal.scss */
.legal-content ul,
.legal-content ol {
  color: #2f2f2f;
  padding-left: 1.2rem;
  margin: 0 0 16px;
  list-style: disc outside;
}

/* line 78, app/assets/stylesheets/_legal.scss */
.legal-content li {
  color: #2f2f2f;
  margin-bottom: 6px;
}

/* line 83, app/assets/stylesheets/_legal.scss */
.legal-content li strong {
  color: #333;
}

/* line 88, app/assets/stylesheets/_legal.scss */
.legal-content p,
.legal-content li {
  line-height: 1.8;
}

/* line 94, app/assets/stylesheets/_legal.scss */
.legal-content p,
.legal-content li,
.legal-content ul,
.legal-content ol {
  text-shadow: none;
  opacity: 1;
}

/* line 102, app/assets/stylesheets/_legal.scss */
.legal-content em {
  color: #2f2f2f;
}

/* line 107, app/assets/stylesheets/_legal.scss */
.legal-content li::marker {
  color: #2b3f8a;
}

/* line 112, app/assets/stylesheets/_legal.scss */
.legal-content a {
  color: #2b3f8a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 63, 138, 0.25);
  transition: all 0.3s ease;
}

/* line 119, app/assets/stylesheets/_legal.scss */
.legal-content a:hover {
  color: #59d8ee;
  border-bottom-color: #59d8ee;
}

@media (max-width: 768px) {
  /* line 50, app/assets/stylesheets/_legal.scss */
  .legal-content {
    top: 0 !important;
    padding: 30px 20px;
    margin: 0 15px;
  }
}

/* line 131, app/assets/stylesheets/_legal.scss */
.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  /* line 131, app/assets/stylesheets/_legal.scss */
  .legal-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* line 144, app/assets/stylesheets/_legal.scss */
.legal-content h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #59d8ee, #2f9cee);
  border-radius: 2px;
}

/* line 158, app/assets/stylesheets/_legal.scss */
.legal-content h2.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  /* line 158, app/assets/stylesheets/_legal.scss */
  .legal-content h2.page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* line 171, app/assets/stylesheets/_legal.scss */
.legal-content h2.page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #59d8ee, #2f9cee);
  border-radius: 2px;
}

/* line 184, app/assets/stylesheets/_legal.scss */
.legal-content section {
  margin-bottom: 40px;
}

/* line 187, app/assets/stylesheets/_legal.scss */
.legal-content section:last-child {
  margin-bottom: 0;
}

/* line 191, app/assets/stylesheets/_legal.scss */
.legal-content section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2b3f8a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(89, 216, 238, 0.3);
}

@media (max-width: 768px) {
  /* line 191, app/assets/stylesheets/_legal.scss */
  .legal-content section h2 {
    font-size: 1.25rem;
  }
}

/* line 204, app/assets/stylesheets/_legal.scss */
.legal-content section p {
  font-size: 1rem;
  line-height: 1.85;
  color: #2f2f2f;
  margin: 0 0 12px 0;
}

@media (max-width: 768px) {
  /* line 204, app/assets/stylesheets/_legal.scss */
  .legal-content section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* line 215, app/assets/stylesheets/_legal.scss */
.legal-content section p strong {
  color: #333;
  font-weight: 600;
}

/* line 220, app/assets/stylesheets/_legal.scss */
.legal-content section p br {
  margin-bottom: 8px;
}

/* line 225, app/assets/stylesheets/_legal.scss */
.legal-content section a {
  color: #2b3f8a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

/* line 232, app/assets/stylesheets/_legal.scss */
.legal-content section a:hover {
  color: #59d8ee;
  border-bottom-color: #59d8ee;
}

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

/* line 256, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section,
.section-cookies .legal-content section,
.section-privacy .legal-content section {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(2),
.section-cookies .legal-content section:nth-child(2),
.section-privacy .legal-content section:nth-child(2) {
  animation-delay: 0.1s;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(3),
.section-cookies .legal-content section:nth-child(3),
.section-privacy .legal-content section:nth-child(3) {
  animation-delay: 0.2s;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(4),
.section-cookies .legal-content section:nth-child(4),
.section-privacy .legal-content section:nth-child(4) {
  animation-delay: 0.3s;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(5),
.section-cookies .legal-content section:nth-child(5),
.section-privacy .legal-content section:nth-child(5) {
  animation-delay: 0.4s;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(6),
.section-cookies .legal-content section:nth-child(6),
.section-privacy .legal-content section:nth-child(6) {
  animation-delay: 0.5s;
}

/* line 261, app/assets/stylesheets/_legal.scss */
.section-legal .legal-content section:nth-child(7),
.section-cookies .legal-content section:nth-child(7),
.section-privacy .legal-content section:nth-child(7) {
  animation-delay: 0.6s;
}

/* line 269, app/assets/stylesheets/_legal.scss */
.legal-back-button {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1002;
}

@media (max-width: 768px) {
  /* line 269, app/assets/stylesheets/_legal.scss */
  .legal-back-button {
    top: 20px;
    left: 20px;
  }
}

/* line 3, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: saturate(120%) blur(3px);
  -webkit-backdrop-filter: saturate(120%) blur(3px);
  z-index: 3000;
  opacity: 0;
  z-index: 10000;
  transition: opacity 0.25s ease-in-out;
}

/* line 18, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-overlay.active {
  display: flex;
  opacity: 1;
}

/* line 24, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-modal {
  width: 92%;
  max-width: 520px;
  background: #ffffff;
  color: #141414;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
  transition: transform 0.25s ease;
}

/* line 35, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-overlay.active .cookie-consent-modal {
  transform: translateY(0);
}

/* line 40, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 46, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-header .cookie-consent-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

/* line 58, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-header .cookie-consent-icon::before {
  content: '🍪';
  display: block;
}

/* line 64, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-header h3 {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 1.25rem;
}

/* line 72, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-body p {
  margin: 0 0 8px 0;
  line-height: 1.45;
}

/* line 76, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-body .cookie-consent-link {
  text-decoration: none;
}

/* line 78, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-body .cookie-consent-link a {
  color: #2b3f8a;
  text-decoration: underline;
}

/* line 82, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-body .cookie-consent-link a:hover {
  color: #21326b;
  text-decoration-thickness: from-font;
}

/* line 87, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-body .cookie-consent-link a:focus,
.cookie-consent-body .cookie-consent-link a:focus-visible,
.cookie-consent-body .cookie-consent-link a:focus:-moz-focusring {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* line 100, app/assets/stylesheets/_cookie_consent.scss */
.cookie-consent-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* line 107, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn {
  appearance: none;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  will-change: transform;
}

/* line 117, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn:active {
  transform: translateY(1px);
}

/* line 120, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn:focus-visible {
  outline: 2px solid #2b3f8a;
  outline-offset: 2px;
}

/* line 125, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn--primary {
  background-color: #2b3f8a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(43, 63, 138, 0.35);
}

/* line 130, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn--primary:hover {
  background-color: #27407e;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 18px rgba(43, 63, 138, 0.42);
}

/* line 137, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn--secondary {
  background-color: #eef1f6;
  color: #141414;
}

/* line 141, app/assets/stylesheets/_cookie_consent.scss */
.cookie-btn--secondary:hover {
  background-color: #e7ebf3;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  /* line 153, app/assets/stylesheets/_cookie_consent.scss */
  .cookie-consent-modal {
    padding: 22px 22px;
  }
  /* line 156, app/assets/stylesheets/_cookie_consent.scss */
  .cookie-consent-header .cookie-consent-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }
}

/* line 2, app/assets/stylesheets/_tech_loader.scss */
#tech-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 600ms ease;
}

/* line 10, app/assets/stylesheets/_tech_loader.scss */
#tech-loader.is-hidden {
  opacity: 0;
}

/* line 15, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, #0d3aa7 0%, #072a7a 45%, #041e55 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
}

/* line 22, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92vw;
  max-width: 900px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(163, 230, 255, 0.7);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 31, 94, 0.25), rgba(4, 18, 60, 0.25));
  filter: drop-shadow(0 0 12px rgba(85, 201, 255, 0.35)) drop-shadow(0 0 28px rgba(85, 201, 255, 0.25));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* line 37, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__frame.out {
  animation: techFrameOut 400ms ease forwards;
}

@keyframes techFrameOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(85, 201, 255, 0.35));
  }
  60% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: .6;
    filter: drop-shadow(0 0 4px rgba(85, 201, 255, 0.2));
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    filter: none;
  }
}

/* line 48, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* line 55, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__title {
  font-family: 'Changa One', system-ui, sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  letter-spacing: 1px;
  color: #e9f7ff;
  text-shadow: 0 0 8px rgba(130, 227, 255, 0.6);
}

/* line 63, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__logo {
  width: clamp(34px, 5vw, 56px);
  height: auto;
  filter: drop-shadow(0 0 8px rgba(130, 227, 255, 0.6));
}

/* line 69, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__bar {
  position: relative;
  height: 34px;
  border: 2px solid rgba(180, 240, 255, 0.9);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(4, 28, 90, 0.35);
}

/* line 78, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(95, 210, 255, 0.9), rgba(60, 160, 255, 0.9));
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.35);
  transition: width 240ms ease;
}

/* line 87, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__chevrons {
  position: absolute;
  inset: 0;
  background-size: 28px 100%;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0 12px, rgba(255, 255, 255, 0) 12px 28px);
  mix-blend-mode: soft-light;
  animation: chevrons 700ms linear infinite;
}

@keyframes chevrons {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 28px 0;
  }
}

/* line 101, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 108, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__brand {
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(210, 240, 255, 0.95);
}

/* line 114, app/assets/stylesheets/_tech_loader.scss */
.tech-loader__percent {
  font-family: 'Changa One', system-ui, sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  color: #e9f7ff;
  text-shadow: 0 0 6px rgba(130, 227, 255, 0.6);
}

/* line 122, app/assets/stylesheets/_tech_loader.scss */
#tech-loader.is-hidden .tech-loader__backdrop {
  opacity: 0;
  transition: opacity 600ms ease;
}

/* line 1, app/assets/stylesheets/_project_cards_appear.scss */
.project-card.pc-appear {
  animation: pc-appear 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

@keyframes pc-appear {
  0% {
    opacity: 0;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(16px) scale(0.98) scale(var(--pc-hover-scale, 1));
  }
  60% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-2px) scale(1.005) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(0) scale(1) scale(var(--pc-hover-scale, 1));
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 22, app/assets/stylesheets/_project_cards_appear.scss */
  .project-card.pc-appear {
    animation-duration: 1ms;
    animation-timing-function: linear;
  }
}

/* line 28, app/assets/stylesheets/_project_cards_appear.scss */
.project-card.pc-animating {
  transition: none !important;
  opacity: 0;
  will-change: transform, opacity;
  animation: none;
  box-shadow: none !important;
  filter: none !important;
}

/* line 37, app/assets/stylesheets/_project_cards_appear.scss */
.project-card.pc-throw {
  opacity: 0;
  transform: translateY(40px) rotateZ(-25deg) scale(0.9);
  animation: pc-throw-in 1.1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Effet vague */
/* line 44, app/assets/stylesheets/_project_cards_appear.scss */
.project-card.pc-wave {
  opacity: 0;
  animation: pc-wave-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pc-throw-in {
  0% {
    opacity: 0;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(100px) rotateZ(-600deg) scale(0.2) scale(var(--pc-hover-scale, 1));
  }
  65% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-10px) rotateZ(10deg) scale(0.9) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(0) rotateZ(0deg) scale(1) scale(var(--pc-hover-scale, 1));
  }
}

@keyframes pc-wave-in {
  0% {
    opacity: 0;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(18px) scale(0.96) scale(var(--pc-hover-scale, 1));
  }
  30% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-6px) scale(1.02) scale(var(--pc-hover-scale, 1));
  }
  55% {
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(4px) scale(0.995) scale(var(--pc-hover-scale, 1));
  }
  75% {
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(-2px) scale(1.005) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(0) scale(1) scale(var(--pc-hover-scale, 1));
  }
}

@keyframes pc-split-in {
  0% {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(10px) scale(var(--pc-hover-scale, 1));
  }
  40% {
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(1px) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) translateY(0) scale(var(--pc-hover-scale, 1));
  }
}

/* line 102, app/assets/stylesheets/_project_cards_appear.scss */
.pc-split {
  animation: pc-split-in 0.6s ease forwards;
  overflow: visible;
}

@keyframes pc-flip-lateral-in {
  0% {
    opacity: 0;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateY(-90deg) translateZ(0) scale(var(--pc-hover-scale, 1));
    transform-origin: center;
  }
  50% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateY(10deg) translateZ(0) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateY(0deg) translateZ(0) scale(var(--pc-hover-scale, 1));
  }
}

@keyframes pc-flip-horizontal-in {
  0% {
    opacity: 0;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateX(90deg) translateZ(0) scale(var(--pc-hover-scale, 1));
    transform-origin: center;
  }
  50% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateX(-10deg) translateZ(0) scale(var(--pc-hover-scale, 1));
  }
  100% {
    opacity: 1;
    transform: perspective(900px) var(--pc-tilt, rotateY(0deg) rotateX(0deg)) rotateX(0deg) translateZ(0) scale(var(--pc-hover-scale, 1));
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 140, app/assets/stylesheets/_project_cards_appear.scss */
  .project-card.pc-throw {
    animation: pc-appear 0.6s ease-out forwards;
    transform: none !important;
  }
  /* line 144, app/assets/stylesheets/_project_cards_appear.scss */
  .project-card.pc-wave {
    animation: pc-appear 0.6s ease-out forwards;
  }
}

/* line 1, app/assets/stylesheets/_project_filter_fade.scss */
.projects-grid {
  will-change: opacity;
}

/* line 2, app/assets/stylesheets/_project_filter_fade.scss */
.projects-grid.pf-fade-out {
  opacity: 0;
  transition: opacity 160ms ease-out;
}

/* line 3, app/assets/stylesheets/_project_filter_fade.scss */
.projects-grid.pf-no-transition {
  transition: none !important;
}

/* line 82, app/assets/stylesheets/application.scss */
.experience-card {
  display: flex;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

/* line 90, app/assets/stylesheets/application.scss */
.experience-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* line 95, app/assets/stylesheets/application.scss */
.experience-card__logo {
  flex: 0 0 120px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

/* line 103, app/assets/stylesheets/application.scss */
.experience-card__logo img {
  max-width: 100%;
  max-height: 80px;
}

/* line 109, app/assets/stylesheets/application.scss */
.experience-card__content {
  flex: 1;
  padding: 1.5rem;
}

/* line 113, app/assets/stylesheets/application.scss */
.experience-card__content .title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* line 119, app/assets/stylesheets/application.scss */
.experience-card__content .company {
  font-weight: 500;
  color: #2b3f8a;
  margin-bottom: 0.25rem;
}

/* line 125, app/assets/stylesheets/application.scss */
.experience-card__content .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
}

/* line 133, app/assets/stylesheets/application.scss */
.experience-card__content .meta .date,
.experience-card__content .meta .location,
.experience-card__content .meta .type {
  display: flex;
  align-items: center;
}

/* line 139, app/assets/stylesheets/application.scss */
.experience-card__content .meta .date i,
.experience-card__content .meta .location i,
.experience-card__content .meta .type i {
  margin-right: 0.25rem;
}

/* line 145, app/assets/stylesheets/application.scss */
.experience-card__content .description {
  color: rgba(32, 47, 102, 0.9);
}

/* line 152, app/assets/stylesheets/application.scss */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 166, app/assets/stylesheets/application.scss */
.modal.active {
  display: flex;
  opacity: 1;
}

/* line 171, app/assets/stylesheets/application.scss */
.modal__content {
  width: 100%;
  max-width: 600px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* line 182, app/assets/stylesheets/application.scss */
.modal.active .modal__content {
  transform: translateY(0);
}

/* line 187, app/assets/stylesheets/application.scss */
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: 0.2s ease;
}

/* line 201, app/assets/stylesheets/application.scss */
.modal__close:hover {
  background-color: #eee;
}

/* line 205, app/assets/stylesheets/application.scss */
.modal__close::before, .modal__close::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #202f66;
}

/* line 214, app/assets/stylesheets/application.scss */
.modal__close::before {
  transform: rotate(45deg);
}

/* line 218, app/assets/stylesheets/application.scss */
.modal__close::after {
  transform: rotate(-45deg);
}

/* line 223, app/assets/stylesheets/application.scss */
.modal__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* line 227, app/assets/stylesheets/application.scss */
.modal__header h3 {
  margin-bottom: 0.25rem;
}

/* line 231, app/assets/stylesheets/application.scss */
.modal__header p {
  color: rgba(32, 47, 102, 0.7);
}

/* line 237, app/assets/stylesheets/application.scss */
.modal__form .form-group {
  margin-bottom: 1rem;
}

/* line 240, app/assets/stylesheets/application.scss */
.modal__form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* line 246, app/assets/stylesheets/application.scss */
.modal__form .form-group input,
.modal__form .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s ease;
}

/* line 256, app/assets/stylesheets/application.scss */
.modal__form .form-group input:focus,
.modal__form .form-group textarea:focus {
  outline: none;
  border-color: #2b3f8a;
  box-shadow: 0 0 0 2px rgba(43, 63, 138, 0.2);
}

/* line 263, app/assets/stylesheets/application.scss */
.modal__form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* line 269, app/assets/stylesheets/application.scss */
.modal__form .btn-submit {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  /* line 278, app/assets/stylesheets/application.scss */
  .section-home__content {
    flex-direction: column-reverse;
  }
  /* line 281, app/assets/stylesheets/application.scss */
  .section-home__content .text-content {
    padding-right: 0;
    margin-top: 2rem;
    text-align: center;
  }
  /* line 288, app/assets/stylesheets/application.scss */
  .experience-card {
    flex-direction: column;
  }
  /* line 291, app/assets/stylesheets/application.scss */
  .experience-card__logo {
    flex: 0 0 auto;
    padding: 1rem 1rem 0;
  }
}

@media (max-width: 768px) {
  /* line 299, app/assets/stylesheets/application.scss */
  h1 {
    font-size: 2rem;
  }
  /* line 303, app/assets/stylesheets/application.scss */
  h2 {
    font-size: 1.75rem;
  }
  /* line 307, app/assets/stylesheets/application.scss */
  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  /* line 313, app/assets/stylesheets/application.scss */
  .container {
    padding: 0 0.5rem;
  }
  /* line 317, app/assets/stylesheets/application.scss */
  .experience-card__content .meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/*# sourceMappingURL=application.css-3ee57c3e08530fadac2567ae64914c7487917fc645df6999fa692b88e4bab797.map */
