@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 */
html:has(body.no-scroll),
html:has(#contactModal.active) {
  overflow: hidden;
}

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

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

/* line 38, app/assets/stylesheets/_base.scss */
body.public-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* line 44, app/assets/stylesheets/_base.scss */
body.public-site > main {
  flex: 1 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* line 103, 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 115, 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 121, app/assets/stylesheets/_base.scss */
.btn:active {
  transform: translateY(0);
}

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

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

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

/* line 140, 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 148, app/assets/stylesheets/_base.scss */
.btn.btn-danger:hover {
  background-color: #c21215;
}

/* line 154, 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 161, 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 57, app/assets/stylesheets/_grid_background.scss */
.theme-1 .grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* line 68, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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 79, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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 93, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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 105, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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 124, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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 136, app/assets/stylesheets/_grid_background.scss */
.theme-1 .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;
}

/* line 3, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* line 13, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__gradient {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 20% 20%, rgba(88, 140, 255, 0.45), transparent 60%), radial-gradient(circle at 80% 30%, rgba(199, 116, 255, 0.5), transparent 65%), radial-gradient(circle at 30% 80%, rgba(42, 217, 204, 0.4), transparent 70%);
  filter: blur(35px);
  animation: auroraShift 28s ease-in-out infinite;
  opacity: 0.65;
}

/* line 24, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__halo {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25), transparent 55%);
  filter: blur(20px);
  opacity: 0.45;
}

/* line 34, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__halo--one {
  animation: haloDriftOne 36s ease-in-out infinite;
}

/* line 38, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__halo--two {
  animation: haloDriftTwo 30s ease-in-out infinite;
  opacity: 0.3;
}

/* line 43, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__halo--three {
  animation: haloDriftThree 42s ease-in-out infinite;
  opacity: 0.35;
}

/* line 49, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles {
  position: absolute;
  inset: 0;
}

/* line 53, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 110px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45));
  border-radius: 999px;
  animation: auroraParticles 12s linear infinite;
  transform: translate3d(0, 0, 0);
}

/* line 64, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(odd) {
  height: 140px;
  animation-duration: 15s;
}

/* line 69, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(3n) {
  animation-duration: 10s;
  opacity: 0.6;
  background: linear-gradient(to bottom, rgba(180, 220, 255, 0), rgba(180, 220, 255, 0.5));
}

/* line 75, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(4n) {
  animation-duration: 18s;
}

/* line 79, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(5n) {
  width: 1px;
  opacity: 0.35;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(1) {
  left: 21%;
  animation-delay: -2.85s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(2) {
  left: 69%;
  animation-delay: -1.07s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(3) {
  left: 27%;
  animation-delay: -11.36s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(4) {
  left: 93%;
  animation-delay: -10.25s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(5) {
  left: 13%;
  animation-delay: -7.04s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(6) {
  left: 67%;
  animation-delay: -9.4s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(7) {
  left: 1%;
  animation-delay: -5.62s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(8) {
  left: 69%;
  animation-delay: -0.89s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(9) {
  left: 93%;
  animation-delay: -6.2s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(10) {
  left: 50%;
  animation-delay: -9.33s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(11) {
  left: 62%;
  animation-delay: -2.28s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(12) {
  left: 63%;
  animation-delay: -11.14s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(13) {
  left: 28%;
  animation-delay: -8.48s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(14) {
  left: 55%;
  animation-delay: -9.84s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(15) {
  left: 78%;
  animation-delay: -11.56s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(16) {
  left: 82%;
  animation-delay: -10.89s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(17) {
  left: 74%;
  animation-delay: -1.89s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(18) {
  left: 77%;
  animation-delay: -7.4s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(19) {
  left: 67%;
  animation-delay: -8.82s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(20) {
  left: 21%;
  animation-delay: -1.97s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(21) {
  left: 19%;
  animation-delay: -5.71s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(22) {
  left: 65%;
  animation-delay: -10.73s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(23) {
  left: 83%;
  animation-delay: -6.46s;
}

/* line 85, app/assets/stylesheets/_aurora_background.scss */
.theme-2 .aurora-background__particles span:nth-child(24) {
  left: 73%;
  animation-delay: -4.17s;
}

@keyframes auroraShift {
  0% {
    transform: translate3d(-4%, -4%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(4%, 6%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-4%, -4%, 0) scale(1.02);
  }
}

@keyframes haloDriftOne {
  0% {
    transform: translate3d(-6%, -4%, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(4%, 8%, 0) rotate(10deg) scale(1.05);
  }
  100% {
    transform: translate3d(-6%, -4%, 0) rotate(0deg) scale(1);
  }
}

@keyframes haloDriftTwo {
  0% {
    transform: translate3d(6%, -2%, 0) rotate(0deg) scale(1.1);
  }
  50% {
    transform: translate3d(-6%, 4%, 0) rotate(-12deg) scale(1.02);
  }
  100% {
    transform: translate3d(6%, -2%, 0) rotate(0deg) scale(1.1);
  }
}

@keyframes haloDriftThree {
  0% {
    transform: translate3d(-3%, 2%, 0) rotate(0deg) scale(0.95);
  }
  50% {
    transform: translate3d(6%, -5%, 0) rotate(8deg) scale(1.05);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) rotate(0deg) scale(0.95);
  }
}

@keyframes auroraParticles {
  0% {
    transform: translate3d(0, -5%, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.45;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(0, 110vh, 0);
    opacity: 0;
  }
}

/* line 3, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* line 12, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__gradient, .theme-3 .nebula-background__mesh, .theme-3 .nebula-background__orbs, .theme-3 .nebula-background__shooting-stars, .theme-3 .nebula-background__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* line 23, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__gradient {
  background: radial-gradient(circle at 15% 20%, rgba(255, 160, 122, 0.45), transparent 65%), radial-gradient(circle at 75% 30%, rgba(120, 182, 255, 0.5), transparent 60%), radial-gradient(circle at 35% 80%, rgba(87, 255, 219, 0.4), transparent 65%), linear-gradient(135deg, rgba(4, 4, 13, 0.35) 0%, rgba(17, 31, 56, 0.4) 50%, rgba(39, 21, 63, 0.35) 100%);
  filter: blur(25px);
  animation: nebulaGradientShift 32s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.7;
}

/* line 34, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh {
  mix-blend-mode: screen;
  opacity: 0.35;
}

/* line 38, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer {
  position: absolute;
  inset: 0;
  background-size: 260px 260px;
  background-position: center;
  opacity: 0.3;
  animation: meshDrift 24s ease-in-out infinite;
}

/* line 46, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer::before, .theme-3 .nebula-background__mesh .mesh-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}

/* line 54, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer::before {
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 60px);
}

/* line 58, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer::after {
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 60px);
}

/* line 63, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer--one {
  transform: perspective(1200px) rotateX(78deg) translateY(-10%);
}

/* line 67, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__mesh .mesh-layer--two {
  transform: perspective(1100px) rotateX(70deg) rotateZ(8deg) translateY(-5%);
  animation-direction: reverse;
  opacity: 0.35;
}

/* line 75, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  box-shadow: 0 0 35px rgba(123, 201, 255, 0.45);
  animation: orbFloat 26s ease-in-out infinite;
  filter: blur(4px);
  mix-blend-mode: screen;
}

/* line 87, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(2n) {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 60% 40%, rgba(255, 220, 180, 0.8), rgba(255, 255, 255, 0));
  animation-duration: 22s;
  mix-blend-mode: screen;
}

/* line 95, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(3n) {
  width: 160px;
  height: 160px;
  animation-duration: 30s;
  box-shadow: 0 0 45px rgba(176, 140, 255, 0.5);
  mix-blend-mode: screen;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(1) {
  left: 89%;
  top: 97%;
  animation-delay: -5.8s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(2) {
  left: 33%;
  top: 30%;
  animation-delay: -17.39s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(3) {
  left: 54%;
  top: 11%;
  animation-delay: -14.37s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(4) {
  left: 84%;
  top: 14%;
  animation-delay: -2.62s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(5) {
  left: 13%;
  top: 26%;
  animation-delay: -17.05s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(6) {
  left: 32%;
  top: 70%;
  animation-delay: -19.59s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(7) {
  left: 6%;
  top: 34%;
  animation-delay: -10.3s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(8) {
  left: 38%;
  top: 88%;
  animation-delay: -6.33s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(9) {
  left: 53%;
  top: 2%;
  animation-delay: -13.24s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(10) {
  left: 57%;
  top: 4%;
  animation-delay: -12.44s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(11) {
  left: 6%;
  top: 40%;
  animation-delay: -16.21s;
}

/* line 104, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__orbs span:nth-child(12) {
  left: 22%;
  top: 64%;
  animation-delay: -8.95s;
}

/* line 113, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__shooting-stars span {
  position: absolute;
  top: 17%;
  left: 1%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  transform: rotate(-10deg);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
  animation: shootingStar 6s linear infinite;
  animation-delay: -4.29s;
  mix-blend-mode: screen;
}

/* line 127, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__shooting-stars span:nth-child(2n) {
  animation-duration: 7.5s;
  top: 36%;
  transform: rotate(-18deg);
}

/* line 133, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__shooting-stars span:nth-child(3n) {
  animation-duration: 5.5s;
  width: 200px;
  top: 36%;
}

/* line 140, app/assets/stylesheets/_nebula_background.scss */
.theme-3 .nebula-background__glow {
  background: radial-gradient(circle at 50% 130%, rgba(255, 255, 255, 0.18), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: baseGlow 18s ease-in-out infinite;
}

@keyframes nebulaGradientShift {
  0% {
    transform: translate3d(-4%, -4%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(5%, 6%, 0) scale(1.07);
  }
  100% {
    transform: translate3d(-4%, -4%, 0) scale(1.02);
  }
}

@keyframes meshDrift {
  0% {
    transform: translate3d(-2%, 0, 0);
  }
  50% {
    transform: translate3d(3%, 4%, 0);
  }
  100% {
    transform: translate3d(-2%, 0, 0);
  }
}

@keyframes orbFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(20px, -30px, 0) scale(1.1);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(-15px, 25px, 0) scale(0.95);
    opacity: 0.4;
  }
}

@keyframes shootingStar {
  0% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translate3d(-400px, 160px, 0) rotate(-10deg);
  }
}

@keyframes baseGlow {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.7;
  }
}

/* line 3, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__glow, .theme-4 .circuit-background__grid, .theme-4 .circuit-background__pulses, .theme-4 .circuit-background__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* line 22, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__glow {
  background: radial-gradient(circle at 20% 20%, rgba(139, 233, 253, 0.4), transparent 70%), radial-gradient(circle at 80% 25%, rgba(255, 146, 255, 0.35), transparent 70%), radial-gradient(circle at 40% 80%, rgba(255, 210, 128, 0.3), transparent 70%), linear-gradient(180deg, rgba(10, 15, 25, 0.4), rgba(10, 15, 25, 0.7));
  filter: blur(20px);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: circuitGlowShift 28s ease-in-out infinite;
}

/* line 33, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__grid {
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* line 37, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__grid .grid-layer {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  animation: gridDrift 16s ease-in-out infinite;
}

/* line 44, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__grid .grid-layer--horizontal {
  background-image: repeating-linear-gradient(0deg, rgba(97, 255, 228, 0.45) 0, rgba(97, 255, 228, 0.45) 2px, transparent 2px, transparent 120px);
}

/* line 48, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__grid .grid-layer--vertical {
  background-image: repeating-linear-gradient(90deg, rgba(255, 95, 255, 0.45) 0, rgba(255, 95, 255, 0.45) 2px, transparent 2px, transparent 120px);
  animation-direction: reverse;
  opacity: 0.7;
}

/* line 56, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__pulses span {
  position: absolute;
  width: 40%;
  height: 40px;
  left: 30%;
  top: 47%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(97, 255, 228, 0), rgba(97, 255, 228, 0.8), rgba(97, 255, 228, 0));
  filter: blur(4px);
  mix-blend-mode: screen;
  animation: pulseSweep 6s linear infinite;
  animation-delay: -1.04s;
}

/* line 70, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__pulses span:nth-child(2n) {
  background: linear-gradient(90deg, rgba(255, 95, 255, 0), rgba(255, 95, 255, 0.8), rgba(255, 95, 255, 0));
  animation-duration: 7s;
  left: 20%;
}

/* line 76, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__pulses span:nth-child(3n) {
  animation-duration: 5s;
  top: 44%;
}

/* line 83, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(97, 255, 228, 0.75);
  box-shadow: 0 0 12px rgba(97, 255, 228, 0.6);
  border-radius: 2px;
  animation: particleFloat 18s linear infinite;
  animation-delay: -6.69s;
  left: 64%;
  top: 86%;
  opacity: 0.7;
}

/* line 97, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__particles span:nth-child(2n) {
  background: rgba(255, 95, 255, 0.75);
  box-shadow: 0 0 12px rgba(255, 95, 255, 0.6);
  animation-duration: 22s;
}

/* line 103, app/assets/stylesheets/_circuit_background.scss */
.theme-4 .circuit-background__particles span:nth-child(3n) {
  width: 4px;
  height: 4px;
  animation-duration: 14s;
  opacity: 0.5;
}

@keyframes circuitGlowShift {
  0% {
    transform: translate3d(-3%, -4%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(4%, 5%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-3%, -4%, 0) scale(1.02);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, -15px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulseSweep {
  0% {
    transform: translate3d(-40%, 0, 0);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translate3d(120%, 0, 0);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(0.9);
  }
  100% {
    transform: translate3d(-10px, 16px, 0) scale(1);
  }
}

/* line 3, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* line 12, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons, .theme-5 .wave-background__glows, .theme-5 .wave-background__bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* line 22, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons .ribbon {
  position: absolute;
  width: 140%;
  height: 35%;
  left: -20%;
  background: linear-gradient(90deg, rgba(69, 196, 244, 0.45), rgba(102, 87, 233, 0.35), rgba(46, 216, 168, 0.4));
  filter: blur(12px);
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: ribbonWave 24s ease-in-out infinite;
  transform-origin: center;
}

/* line 35, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons .ribbon--one {
  top: 15%;
  animation-duration: 22s;
}

/* line 40, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons .ribbon--two {
  top: 35%;
  animation-duration: 28s;
  animation-delay: -6s;
}

/* line 46, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons .ribbon--three {
  top: 55%;
  animation-duration: 26s;
  animation-delay: -12s;
  opacity: 0.5;
}

/* line 53, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__ribbons .ribbon--four {
  top: 75%;
  animation-duration: 30s;
  animation-delay: -18s;
  opacity: 0.45;
}

/* line 62, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 223, 255, 0.45) 0%, rgba(132, 223, 255, 0) 65%);
  mix-blend-mode: screen;
  filter: blur(18px);
  animation: glowPulse 18s ease-in-out infinite;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(1) {
  left: 81%;
  top: 50%;
  animation-delay: -5.81s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(2) {
  left: 1%;
  top: 97%;
  animation-delay: -2.94s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(3) {
  left: 72%;
  top: 68%;
  animation-delay: -4.75s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(4) {
  left: 3%;
  top: 29%;
  animation-delay: -11.73s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(5) {
  left: 71%;
  top: 88%;
  animation-delay: -3.49s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(6) {
  left: 47%;
  top: 40%;
  animation-delay: -6.69s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(7) {
  left: 82%;
  top: 62%;
  animation-delay: -15.07s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(8) {
  left: 90%;
  top: 57%;
  animation-delay: -8.96s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(9) {
  left: 50%;
  top: 11%;
  animation-delay: -11.54s;
}

/* line 74, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(10) {
  left: 92%;
  top: 22%;
  animation-delay: -9.33s;
}

/* line 81, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(2n) {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(102, 87, 233, 0.45) 0%, rgba(102, 87, 233, 0) 65%);
  animation-duration: 22s;
}

/* line 88, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__glows span:nth-child(3n) {
  background: radial-gradient(circle, rgba(46, 216, 168, 0.4) 0%, rgba(46, 216, 168, 0) 70%);
  animation-duration: 16s;
}

/* line 95, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__bubbles span {
  position: absolute;
  width: 8px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: rgba(132, 223, 255, 0.65);
  filter: blur(1px);
  mix-blend-mode: screen;
  left: 90%;
  bottom: -10%;
  animation: bubbleRise 14s linear infinite;
  animation-delay: -11.82s;
}

/* line 109, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__bubbles span:nth-child(2n) {
  width: 10px;
  height: 22px;
  background: rgba(102, 87, 233, 0.6);
  animation-duration: 18s;
}

/* line 116, app/assets/stylesheets/_wave_background.scss */
.theme-5 .wave-background__bubbles span:nth-child(3n) {
  width: 6px;
  height: 16px;
  background: rgba(46, 216, 168, 0.5);
  animation-duration: 12s;
}

@keyframes ribbonWave {
  0% {
    transform: translate3d(-5%, 0, 0) rotate(0deg) scaleY(1);
  }
  50% {
    transform: translate3d(5%, 0, 0) rotate(2deg) scaleY(1.05);
  }
  100% {
    transform: translate3d(-5%, 0, 0) rotate(0deg) scaleY(1);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes bubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translate3d(0, -120vh, 0) scale(1);
    opacity: 0;
  }
}

/* line 3, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* line 12, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__core, .theme-6 .prism-background__facets, .theme-6 .prism-background__edges, .theme-6 .prism-background__sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* line 22, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__core {
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.35), transparent 55%), radial-gradient(circle at 25% 75%, rgba(120, 200, 255, 0.35), transparent 65%), radial-gradient(circle at 75% 65%, rgba(255, 170, 220, 0.3), transparent 70%), linear-gradient(180deg, rgba(10, 8, 26, 0.4), rgba(10, 8, 26, 0.75));
  mix-blend-mode: screen;
  filter: blur(22px);
  animation: prismCorePulse 26s ease-in-out infinite;
  opacity: 0.7;
}

/* line 34, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 12%;
  background: conic-gradient(from 90deg, rgba(255, 255, 255, 0.35), rgba(120, 200, 255, 0) 35%, rgba(255, 158, 224, 0.4) 70%, rgba(255, 255, 255, 0));
  opacity: 0.25;
  mix-blend-mode: screen;
  filter: blur(6px);
  transform: rotate(15deg);
  animation: facetMorph 30s ease-in-out infinite;
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(1) {
  left: 22%;
  top: 81%;
  animation-delay: -4.79s;
  transform: rotate(293deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(2) {
  left: 63%;
  top: 90%;
  animation-delay: -15.76s;
  transform: rotate(43deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(3) {
  left: 1%;
  top: 79%;
  animation-delay: -3.78s;
  transform: rotate(44deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(4) {
  left: 84%;
  top: 71%;
  animation-delay: -1.56s;
  transform: rotate(308deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(5) {
  left: 43%;
  top: 45%;
  animation-delay: -21.31s;
  transform: rotate(199deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(6) {
  left: 72%;
  top: 88%;
  animation-delay: -10.06s;
  transform: rotate(290deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(7) {
  left: 88%;
  top: 15%;
  animation-delay: -17.01s;
  transform: rotate(97deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(8) {
  left: 36%;
  top: 38%;
  animation-delay: -12.72s;
  transform: rotate(188deg);
}

/* line 48, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__facets span:nth-child(9) {
  left: 62%;
  top: 78%;
  animation-delay: -15.07s;
  transform: rotate(6deg);
}

/* line 58, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__edges span {
  position: absolute;
  width: 220px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(120, 200, 255, 0.8), rgba(255, 255, 255, 0));
  opacity: 0.6;
  mix-blend-mode: screen;
  transform: rotate(15deg);
  left: 14%;
  top: 94%;
  animation: edgeGlow 12s ease-in-out infinite;
  animation-delay: -8.93s;
}

/* line 72, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__edges span:nth-child(2n) {
  background: linear-gradient(90deg, rgba(255, 170, 220, 0), rgba(255, 170, 220, 0.8), rgba(255, 170, 220, 0));
  animation-duration: 14s;
}

/* line 77, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__edges span:nth-child(3n) {
  width: 180px;
  animation-duration: 10s;
  opacity: 0.45;
}

/* line 85, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__sparks span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 25% 75% 50% 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  mix-blend-mode: screen;
  animation: sparkOrbit 18s linear infinite;
  animation-delay: -7.9s;
  left: 68%;
  top: 7%;
  opacity: 0.8;
}

/* line 100, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__sparks span:nth-child(2n) {
  background: rgba(120, 200, 255, 0.7);
  box-shadow: 0 0 12px rgba(120, 200, 255, 0.6);
  animation-duration: 16s;
}

/* line 106, app/assets/stylesheets/_prism_background.scss */
.theme-6 .prism-background__sparks span:nth-child(3n) {
  background: rgba(255, 170, 220, 0.7);
  box-shadow: 0 0 12px rgba(255, 170, 220, 0.6);
  animation-duration: 12s;
}

@keyframes prismCorePulse {
  0% {
    transform: scale(0.98) translate3d(0, 0, 0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.04) translate3d(0, -2%, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.98) translate3d(0, 0, 0);
    opacity: 0.6;
  }
}

@keyframes facetMorph {
  0% {
    transform: rotate(0deg) scale(0.95);
    opacity: 0.2;
  }
  50% {
    transform: rotate(20deg) scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: rotate(0deg) scale(0.95);
    opacity: 0.2;
  }
}

@keyframes edgeGlow {
  0% {
    transform: translate3d(0, 0, 0) scaleX(0.9);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(3px, -6px, 0) scaleX(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, 0, 0) scaleX(0.9);
    opacity: 0.3;
  }
}

@keyframes sparkOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.8);
  }
  50% {
    transform: translate3d(12px, -14px, 0) rotate(180deg) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(0.8);
  }
}

/* line 3, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials, .theme-7 .stellar-background__stars, .theme-7 .stellar-background__shooting-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* line 22, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 0.65;
  filter: blur(10px);
}

/* line 29, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--circle-one {
  width: 110vmin;
  height: 110vmin;
  top: -35vmin;
  left: -28vmin;
  background: radial-gradient(circle, rgba(255, 230, 120, 0.35) 0%, rgba(255, 230, 120, 0) 70%);
  animation: radialDriftDiagonal 32s ease-in-out infinite;
}

/* line 38, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--circle-two {
  width: 85vmin;
  height: 85vmin;
  bottom: -32vmin;
  right: -14vmin;
  background: radial-gradient(circle, rgba(120, 190, 255, 0.4) 0%, rgba(120, 190, 255, 0) 70%);
  animation: radialDriftHorizontal 28s ease-in-out infinite;
}

/* line 47, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--ellipse {
  width: 95vmin;
  height: 52vmin;
  top: 48vmin;
  left: 6vmin;
  background: radial-gradient(ellipse at center, rgba(120, 255, 215, 0.4) 0%, rgba(120, 255, 215, 0) 70%);
  animation: radialVerticalPulse 24s ease-in-out infinite;
}

/* line 56, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--square {
  width: 62vmin;
  height: 62vmin;
  top: 4vmin;
  right: 18vmin;
  border-radius: 10%;
  background: radial-gradient(circle, rgba(255, 120, 196, 0.38) 0%, rgba(255, 120, 196, 0) 70%);
  animation: radialSquareSpin 30s ease-in-out infinite;
}

/* line 66, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--diamond {
  width: 58vmin;
  height: 58vmin;
  bottom: 12vmin;
  left: 16vmin;
  transform: rotate(45deg);
  background: radial-gradient(circle, rgba(168, 211, 255, 0.45) 0%, rgba(168, 211, 255, 0) 70%);
  animation: radialDiamondOrbit 26s ease-in-out infinite;
}

/* line 76, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__radials .radial--halo {
  width: 140vmin;
  height: 140vmin;
  top: -40vmin;
  right: -36vmin;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 75%);
  animation: radialHaloPulse 36s ease-in-out infinite;
  opacity: 0.55;
}

/* line 88, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  mix-blend-mode: screen;
  animation: starTwinkle 5s ease-in-out infinite;
}

/* line 99, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(2n) {
  width: 2px;
  height: 2px;
  animation-duration: 6s;
  opacity: 0.7;
}

/* line 106, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(3n) {
  width: 4px;
  height: 4px;
  animation-duration: 7.5s;
  opacity: 0.9;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(1) {
  left: 82%;
  top: 12%;
  animation-delay: -11.31s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(2) {
  left: 2%;
  top: 4%;
  animation-delay: -4.34s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(3) {
  left: 13%;
  top: 11%;
  animation-delay: -9.74s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(4) {
  left: 8%;
  top: 39%;
  animation-delay: -18.17s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(5) {
  left: 40%;
  top: 67%;
  animation-delay: -22.74s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(6) {
  left: 19%;
  top: 8%;
  animation-delay: -6.02s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(7) {
  left: 29%;
  top: 66%;
  animation-delay: -17.65s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(8) {
  left: 28%;
  top: 18%;
  animation-delay: -22.1s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(9) {
  left: 69%;
  top: 44%;
  animation-delay: -23.61s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(10) {
  left: 86%;
  top: 89%;
  animation-delay: -3.08s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(11) {
  left: 30%;
  top: 51%;
  animation-delay: -21.47s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(12) {
  left: 53%;
  top: 46%;
  animation-delay: -7.75s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(13) {
  left: 11%;
  top: 62%;
  animation-delay: -17.17s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(14) {
  left: 83%;
  top: 30%;
  animation-delay: -20.14s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(15) {
  left: 34%;
  top: 95%;
  animation-delay: -9.57s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(16) {
  left: 38%;
  top: 99%;
  animation-delay: -16.62s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(17) {
  left: 67%;
  top: 75%;
  animation-delay: -10.92s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(18) {
  left: 96%;
  top: 62%;
  animation-delay: -5.39s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(19) {
  left: 1%;
  top: 17%;
  animation-delay: -10.34s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(20) {
  left: 93%;
  top: 86%;
  animation-delay: -2.39s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(21) {
  left: 21%;
  top: 24%;
  animation-delay: -15.84s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(22) {
  left: 61%;
  top: 53%;
  animation-delay: -4.74s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(23) {
  left: 68%;
  top: 32%;
  animation-delay: -17.78s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(24) {
  left: 95%;
  top: 20%;
  animation-delay: -11.29s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(25) {
  left: 14%;
  top: 79%;
  animation-delay: -6.38s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(26) {
  left: 53%;
  top: 32%;
  animation-delay: -0.73s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(27) {
  left: 42%;
  top: 82%;
  animation-delay: -9.18s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(28) {
  left: 53%;
  top: 45%;
  animation-delay: -16.89s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(29) {
  left: 77%;
  top: 28%;
  animation-delay: -18.74s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(30) {
  left: 43%;
  top: 94%;
  animation-delay: -6.13s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(31) {
  left: 93%;
  top: 66%;
  animation-delay: -22.9s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(32) {
  left: 63%;
  top: 36%;
  animation-delay: -21.13s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(33) {
  left: 85%;
  top: 19%;
  animation-delay: -4.28s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(34) {
  left: 65%;
  top: 40%;
  animation-delay: -17.27s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(35) {
  left: 6%;
  top: 78%;
  animation-delay: -18.89s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(36) {
  left: 99%;
  top: 58%;
  animation-delay: -14.43s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(37) {
  left: 79%;
  top: 18%;
  animation-delay: -17.58s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(38) {
  left: 31%;
  top: 66%;
  animation-delay: -21.28s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(39) {
  left: 91%;
  top: 14%;
  animation-delay: -6.94s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(40) {
  left: 100%;
  top: 51%;
  animation-delay: -9.44s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(41) {
  left: 62%;
  top: 61%;
  animation-delay: -3.65s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(42) {
  left: 72%;
  top: 58%;
  animation-delay: -13.57s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(43) {
  left: 17%;
  top: 80%;
  animation-delay: -2.72s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(44) {
  left: 10%;
  top: 74%;
  animation-delay: -16.56s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(45) {
  left: 92%;
  top: 42%;
  animation-delay: -0.77s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(46) {
  left: 95%;
  top: 18%;
  animation-delay: -16.02s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(47) {
  left: 51%;
  top: 18%;
  animation-delay: -0.42s;
}

/* line 114, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__stars span:nth-child(48) {
  left: 33%;
  top: 66%;
  animation-delay: -5.31s;
}

/* line 123, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__shooting-stars span {
  position: absolute;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  mix-blend-mode: screen;
  top: 35%;
  left: 89%;
  transform: rotate(-15deg);
  animation: shootingStarTrail 8s linear infinite;
  animation-delay: -11.98s;
}

/* line 137, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__shooting-stars span:nth-child(2n) {
  animation-duration: 10s;
  transform: rotate(-25deg);
  background: linear-gradient(90deg, rgba(255, 180, 255, 0.9), rgba(255, 180, 255, 0));
}

/* line 143, app/assets/stylesheets/_stellar_background.scss */
.theme-7 .stellar-background__shooting-stars span:nth-child(3n) {
  animation-duration: 6.5s;
  transform: rotate(-10deg);
  top: 18%;
  background: linear-gradient(90deg, rgba(120, 200, 255, 0.9), rgba(120, 200, 255, 0));
}

@keyframes radialDriftDiagonal {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  50% {
    transform: translate3d(6%, 8%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
  }
}

@keyframes radialDriftHorizontal {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8%, 0, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes radialVerticalPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(0, -4%, 0) scale(1.08);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
}

@keyframes radialSquareSpin {
  0% {
    transform: rotate(0deg) scale(0.95);
  }
  50% {
    transform: rotate(12deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(0.95);
  }
}

@keyframes radialDiamondOrbit {
  0% {
    transform: rotate(45deg) translate3d(0, 0, 0) scale(0.9);
  }
  50% {
    transform: rotate(65deg) translate3d(10px, -12px, 0) scale(1.05);
  }
  100% {
    transform: rotate(45deg) translate3d(0, 0, 0) scale(0.9);
  }
}

@keyframes radialHaloPulse {
  0% {
    opacity: 0.45;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.45;
    transform: scale(0.95);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes shootingStarTrail {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-15deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translate3d(-320px, 120px, 0) rotate(-15deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/_mouse_radial_overlay.scss */
:root {
  --mouse-radial-base-size: clamp(28rem, 46vw, 74rem);
  --mouse-radial-opacity: 0.78;
  --mouse-radial-soft-blur: clamp(60px, 10vw, 140px);
}

/* line 7, app/assets/stylesheets/_mouse_radial_overlay.scss */
.public-site {
  --mouse-radial-base-size: clamp(30rem, 50vw, 80rem);
  --mouse-radial-opacity: 0.82;
}

/* line 12, app/assets/stylesheets/_mouse_radial_overlay.scss */
.mouse-radial-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
}

/* line 21, app/assets/stylesheets/_mouse_radial_overlay.scss */
.mouse-radial-overlay__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--mouse-radial-base-size);
  height: var(--mouse-radial-base-size);
  transform: translate3d(calc(-50% + var(--mouse-radial-translate-x, 0px)), calc(-50% + var(--mouse-radial-translate-y, 0px)), 0);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.65) 0%, rgba(200, 220, 255, 0.42) 28%, var(--mouse-radial-color, rgba(70, 150, 255, 0.75)) 55%, rgba(34, 58, 110, 0.32) 82%, rgba(34, 58, 110, 0) 100%);
  opacity: var(--mouse-radial-opacity, 0.82);
  filter: blur(var(--mouse-radial-soft-blur, 110px));
  box-shadow: 0 0 160px rgba(60, 120, 220, 0.45), 0 0 220px rgba(255, 255, 255, 0.35);
  transition: opacity 0.5s ease, filter 0.5s ease, background 0.6s ease, box-shadow 0.6s ease;
}

/* line 48, app/assets/stylesheets/_mouse_radial_overlay.scss */
.mouse-radial-overlay--reduced {
  opacity: 0.18;
}

/* line 51, app/assets/stylesheets/_mouse_radial_overlay.scss */
.mouse-radial-overlay--reduced .mouse-radial-overlay__glow {
  filter: blur(calc(var(--mouse-radial-soft-blur, 110px) * 1.2));
}

/* line 57, app/assets/stylesheets/_mouse_radial_overlay.scss */
body.admin .mouse-radial-overlay {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  /* line 62, app/assets/stylesheets/_mouse_radial_overlay.scss */
  .mouse-radial-overlay {
    transition: none;
  }
  /* line 65, app/assets/stylesheets/_mouse_radial_overlay.scss */
  .mouse-radial-overlay__glow {
    transition: none;
  }
}

/* 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;
  min-height: 70px;
  /* 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 53, app/assets/stylesheets/_navbar.scss */
.navbar.admin-mode {
  position: sticky;
  top: 0;
  animation: none !important;
  /* Désactive toutes les animations */
}

/* line 60, 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 70, app/assets/stylesheets/_navbar.scss */
.navbar.navbar-hidden {
  animation: slideUp 0.5s ease-out forwards;
}

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

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

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

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

/* line 102, 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%;
  white-space: nowrap;
}

/* line 110, 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 120, app/assets/stylesheets/_navbar.scss */
.navbar__logo .logo-text:hover .text-original {
  opacity: 0;
  transform: translateY(-100%);
}

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

/* line 133, 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 138, app/assets/stylesheets/_navbar.scss */
.navbar__links .kebab-menu {
  margin-left: 1rem;
}

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

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

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

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

/* line 163, 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 171, 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 182, 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 189, 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 201, app/assets/stylesheets/_navbar.scss */
.navbar__links a.navbar__projects-gif::after {
  content: none !important;
}

/* line 203, 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 211, 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 229, 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 237, app/assets/stylesheets/_navbar.scss */
.navbar__links .js-contact-modal {
  transition: all 0.3s ease;
}

/* line 240, 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 247, app/assets/stylesheets/_navbar.scss */
.navbar__links__separator {
  height: 24px;
  width: 1px;
  background-color: #cbd5e1;
  margin: 0 1rem;
  align-self: center;
}

/* line 256, 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 273, 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 279, app/assets/stylesheets/_navbar.scss */
.navbar__links__btn-contact:active {
  transform: translateY(0);
}

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

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

/* line 294, 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 303, app/assets/stylesheets/_navbar.scss */
.navbar__links .btn-outline:hover {
  background-color: #202f66;
  color: white;
}

/* line 310, 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 323, 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 334, app/assets/stylesheets/_navbar.scss */
.navbar__burger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

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

/* line 348, 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 357, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .mobile-kebab {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

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

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

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

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

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

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

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

/* line 407, 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 424, 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 430, app/assets/stylesheets/_navbar.scss */
.navbar__mobile__btn-contact:active {
  transform: translateY(0);
}

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

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

/* line 445, 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 454, app/assets/stylesheets/_navbar.scss */
.navbar__mobile .btn-outline:hover {
  background-color: #202f66;
  color: white;
}

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

/* line 466, 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 472, 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: 821px) {
  /* line 499, app/assets/stylesheets/_navbar.scss */
  .navbar:not(.admin-mode) .navbar__links {
    display: none;
  }
  /* line 503, app/assets/stylesheets/_navbar.scss */
  .navbar:not(.admin-mode) .navbar__burger {
    display: flex;
  }
}

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

/* line 529, 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: rgba(31, 31, 31, 0.8);
  border: 1px solid currentColor;
  border-color: rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  color: #fff;
  width: auto;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  overflow: visible;
  animation: fadeIn 0.5s ease-out;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
  position: fixed;
}

/* line 24, app/assets/stylesheets/_project_menu.scss */
.project-menu::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.28), 0 0 46px rgba(255, 255, 255, 0.18);
  opacity: 0.52;
  animation: projectMenuGlow 1.7s ease-in-out infinite;
  transition: opacity 0.3s ease;
  z-index: -1;
}

/* line 37, app/assets/stylesheets/_project_menu.scss */
.project-menu.dragging::after {
  animation-play-state: paused;
  opacity: 0.78;
}

@keyframes projectMenuGlow {
  0% {
    opacity: 0.4;
  }
  40% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.4;
  }
}

/* line 57, 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 76, 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 83, 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 100, 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);
  transform: scale(1.08);
}

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

/* line 111, app/assets/stylesheets/_project_menu.scss */
.drag-handle.dragging {
  background-color: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.28), 0 0 22px rgba(255, 255, 255, 0.16);
  transform: scale(1.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* line 119, 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 126, app/assets/stylesheets/_project_menu.scss */
.drag-handle:hover .drag-icon {
  opacity: 1;
}

/* Styles pour le menu en cours de déplacement */
/* line 131, 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 137, app/assets/stylesheets/_project_menu.scss */
.menu-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  font-family: 'gibson', 'canada-type-gibson', 'Changa One', 'Arial Black', 'Arial Bold', sans-serif;
  font-weight: 600;
}

/* line 146, 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 153, app/assets/stylesheets/_project_menu.scss */
.project-btn {
  padding: 0.6rem 1.2rem;
  background: rgba(51, 51, 51, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  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;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* line 176, app/assets/stylesheets/_project_menu.scss */
.project-btn:hover {
  background: #555;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.24);
}

/* line 182, app/assets/stylesheets/_project_menu.scss */
.project-btn.active {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4), 0 0 16px rgba(0, 0, 0, 0.35);
}

/* line 187, app/assets/stylesheets/_project_menu.scss */
#dev-filter-btn.active {
  background: #204196;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4), 0 0 16px rgba(32, 65, 150, 0.6);
}

/* line 192, app/assets/stylesheets/_project_menu.scss */
#retouche-filter-btn.active {
  background: #801719;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4), 0 0 16px rgba(128, 23, 25, 0.6);
}

/* Styles pour les transitions des cartes de projet */
/* line 198, 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 {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

/* line 106, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__buttons #mobile-dev-filter-btn.active {
  background: #204196;
  box-shadow: 0 0 8px rgba(32, 65, 150, 0.55);
}

/* line 111, app/assets/stylesheets/_project_mobile_navbar.scss */
.project-mobile-navbar__buttons #mobile-retouche-filter-btn.active {
  background: #801719;
  box-shadow: 0 0 8px rgba(128, 23, 25, 0.55);
}

/* line 119, 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 129, app/assets/stylesheets/_project_mobile_navbar.scss */
  #projects-section.section {
    justify-content: flex-start !important;
    padding-top: 0 !important;
  }
  /* line 134, app/assets/stylesheets/_project_mobile_navbar.scss */
  #projects-section .container {
    margin-top: 56px !important;
  }
  /* line 136, app/assets/stylesheets/_project_mobile_navbar.scss */
  .project-menu {
    display: none !important;
  }
  /* line 140, 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);
  }
}

@media screen and (min-width: 600px) and (max-width: 1032px) and (orientation: portrait) {
  /* line 28, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-bottom: 120px !important;
  }
}

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

@keyframes homeImageSlideInCentered {
  from {
    opacity: 0;
    left: 70%;
  }
  to {
    opacity: 1;
    left: 50%;
  }
}

@keyframes homeImageSlideInBottom {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes homeTextExplosiveIn {
  0% {
    opacity: 0;
    transform: scale(0.4) rotate(-12deg);
    filter: blur(10px);
  }
  40% {
    opacity: 1;
    transform: scale(1.08) rotate(4deg);
    filter: blur(0px);
  }
  70% {
    transform: scale(0.96) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* line 87, app/assets/stylesheets/_home.scss */
.section-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #2b3f8a;
  padding: 0;
  padding-top: 150px !important;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

@supports (height: 100svh) {
  /* line 87, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100svh;
  }
}

@supports (-webkit-touch-callout: none) {
  /* line 87, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: -webkit-fill-available;
  }
}

/* line 109, 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 109, app/assets/stylesheets/_home.scss */
  .section-home__content {
    flex-direction: column-reverse;
    text-align: center;
  }
}

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

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

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

/* line 141, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container.home-text-explosive {
  animation: homeTextExplosiveIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

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

@media (min-width: 992px) {
  /* line 155, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title {
    transform: translateZ(25px) rotateX(2deg) rotateY(3deg);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  }
  /* line 159, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span {
    margin-right: 15px;
  }
  /* line 162, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span:last-child, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span:last-child {
    margin-right: 0;
  }
  /* line 168, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span,
.section-home__text .animated-container:not(.is-animating-text):hover .animated-text span, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span,
.section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span {
    display: inline-block;
    animation: wordDance 0.8s ease-in-out forwards;
  }
  /* line 175, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span:nth-child(1), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span:nth-child(1) {
    animation-delay: 0.05s;
    transform-origin: top left;
    transform: translateZ(30px) rotate(-3deg) scale(1.1);
  }
  /* line 181, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span:nth-child(2), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span:nth-child(2) {
    animation-delay: 0.12s;
    transform-origin: top center;
    transform: translateZ(25px) rotate(2deg) scale(1.08);
  }
  /* line 187, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span:nth-child(3), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span:nth-child(3) {
    animation-delay: 0.18s;
    transform-origin: center;
    transform: translateZ(35px) rotate(-1deg) scale(1.12);
  }
  /* line 193, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-title span:nth-child(4), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-title span:nth-child(4) {
    animation-delay: 0.24s;
    transform-origin: bottom right;
    transform: translateZ(28px) rotate(4deg) scale(1.1);
  }
  /* line 200, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span {
    margin-right: 4px;
  }
  /* line 204, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(15), .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(21), .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(25), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(15), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(21), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(25) {
    margin-right: 4px;
  }
  /* line 210, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(2n), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(2n) {
    animation-delay: 0.1s;
    transform-origin: bottom left;
  }
  /* line 215, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(3n), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(3n) {
    animation-delay: 0.2s;
    transform-origin: top right;
  }
  /* line 220, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-text span:nth-child(5n), .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-text span:nth-child(5n) {
    animation-delay: 0.15s;
    transform-origin: center;
  }
  /* line 226, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-buttons, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-buttons {
    transform: translateZ(20px);
  }
  /* line 231, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-buttons .btn:first-child, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-buttons .btn:first-child {
    transform: translateZ(15px) rotate(-8deg) scale(1.1);
  }
  /* line 235, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:not(.is-animating-text):hover .animated-buttons .btn:last-child, .section-home__text:hover .section-home__text .animated-container:not(.is-animating-text) .animated-buttons .btn:last-child {
    transform: translateZ(12px) rotate(8deg) scale(1.12) translateX(15px);
  }
}

/* line 244, app/assets/stylesheets/_home.scss */
.section-home__text .animated-title {
  color: #eeedec;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  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);
  position: relative;
  z-index: 3;
}

/* line 258, 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 264, app/assets/stylesheets/_home.scss */
.section-home__text .animated-title span:last-child {
  margin-right: 0;
}

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

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

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

/* line 287, app/assets/stylesheets/_home.scss */
.section-home__text .bracket.invisible {
  display: none !important;
  opacity: 0;
  border: none;
  filter: none;
  pointer-events: none;
}

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

/* line 306, 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 317, 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 328, app/assets/stylesheets/_home.scss */
.section-home__text .bracket-bottom-right {
  bottom: -25px;
  right: -11px;
  width: 90px;
  height: 70px;
  border-left: none;
  border-top: none;
  transform-origin: bottom right;
  transform: rotate(0deg);
}

/* line 340, app/assets/stylesheets/_home.scss */
.section-home__text .animated-text {
  color: #eeedec;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 355, 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 340, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

/* line 383, 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: calc(20% - 30px);
  bottom: 0;
}

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

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

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

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

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

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

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

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

/* line 446, 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 457, app/assets/stylesheets/_home.scss */
.section-home__buttons .btn i {
  margin-right: 0.25rem;
}

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

/* line 465, 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 472, 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 478, 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);
}

/* line 492, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container.is-animating-text .section-home__buttons.animated-buttons .btn:hover {
  transform: none !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* line 497, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container.is-animating-text .section-home__buttons.animated-buttons .btn-talk:hover {
  background-color: #ea1d21 !important;
  color: white !important;
}

/* line 502, app/assets/stylesheets/_home.scss */
.section-home__text .animated-container.is-animating-text .section-home__buttons.animated-buttons .btn-download:hover {
  background-color: #eeedec !important;
  color: #2b3f8a !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  /* line 513, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 1.0rem;
    line-height: 1.4;
  }
  /* line 518, app/assets/stylesheets/_home.scss */
  .section-home__text .bracket {
    display: none;
  }
  /* line 523, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    padding: 0;
  }
  /* line 526, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:hover {
    transform: none;
    box-shadow: none;
  }
  /* line 532, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:hover * {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 992px) {
  /* line 541, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: auto;
  }
}

@media (min-width: 1200px) {
  /* line 547, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
  }
  /* line 551, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    opacity: 0;
  }
  /* line 555, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 559, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideIn 0.8s ease-out forwards;
  }
}

@media (min-width: 993px) and (max-width: 1199px) {
  /* line 565, app/assets/stylesheets/_home.scss */
  .section-home__text {
    position: relative;
    padding: 1rem;
    left: 2rem;
  }
  /* line 569, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  /* line 576, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    padding: 1rem 1rem;
  }
  /* line 582, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    opacity: 0;
  }
  /* line 589, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 593, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideInCentered 0.8s ease-out forwards;
  }
  /* line 597, app/assets/stylesheets/_home.scss */
  .section-home__image img:hover {
    transform: translateX(-50%) scale(1.02);
  }
}

@media (max-width: 992px) and (min-width: 601px) {
  /* line 605, app/assets/stylesheets/_home.scss */
  .section-home__content {
    position: relative;
    padding-top: 200px !important;
  }
  /* line 610, app/assets/stylesheets/_home.scss */
  .section-home__text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 0;
  }
  /* line 617, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 624, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 200px !important;
    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;
    opacity: 0;
  }
  /* line 655, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 659, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideInBottom 0.6s ease-out forwards;
  }
}

@media (max-width: 600px) and (min-width: 501px) {
  /* line 668, app/assets/stylesheets/_home.scss */
  .section-home__content {
    position: relative;
    padding-top: 200px !important;
  }
  /* line 673, app/assets/stylesheets/_home.scss */
  .section-home__text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 0;
  }
  /* line 680, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 687, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 200px !important;
    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;
    opacity: 0;
  }
  /* line 718, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 722, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideInBottom 0.6s ease-out forwards;
  }
}

@media (max-width: 500px) and (min-width: 471px) {
  /* line 730, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 250px !important;
  }
  /* line 732, app/assets/stylesheets/_home.scss */
  .section-home .section-home__text .animated-container {
    margin-top: -50px;
  }
  /* line 736, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 743, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 250px;
    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;
    opacity: 0;
  }
  /* line 774, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 778, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideInBottom 0.6s ease-out forwards;
  }
}

@media (max-width: 470px) and (min-width: 320px) {
  /* line 786, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 250px !important;
  }
  /* line 788, app/assets/stylesheets/_home.scss */
  .section-home .section-home__text .animated-container {
    margin-top: -50px;
  }
  /* line 792, app/assets/stylesheets/_home.scss */
  .section-home__image {
    position: static;
    height: 0;
    max-height: none;
    overflow: visible;
    pointer-events: none;
  }
  /* line 799, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    position: absolute;
    left: 50%;
    top: 190px;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    width: 65vw;
    max-width: 720px;
    /* 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;
    opacity: 0;
  }
  /* line 830, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--visible {
    opacity: 1;
  }
  /* line 834, app/assets/stylesheets/_home.scss */
  .section-home__image img.home-image--enter {
    animation: homeImageSlideInBottom 0.5s ease-out forwards;
  }
}

@media screen and (min-width: 320px) and (max-width: 375px) and (min-height: 568px) and (max-height: 667px) {
  /* line 844, app/assets/stylesheets/_home.scss */
  .section-home {
    /* occupe toute la hauteur de l'écran, section remontée de 35px */
    padding-top: 100px !important;
  }
  /* line 849, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    display: none;
    /* override du 190px défini plus haut */
  }
}

@media (min-width: 360px) and (max-width: 380px) and (min-height: 668px) and (max-height: 800px) {
  /* line 859, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-top: 220px !important;
    padding-bottom: 20px !important;
  }
  /* line 865, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    margin-top: -20px;
    margin-bottom: 0;
  }
  /* line 870, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 1.9rem;
    line-height: 1.15;
  }
  /* line 875, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 1.0rem;
    line-height: 1.35;
  }
  /* line 880, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 1rem;
    margin-bottom: 0;
    gap: 0.5rem;
  }
  /* line 886, app/assets/stylesheets/_home.scss */
  .section-home__buttons .btn {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }
  /* line 892, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: 190px;
  }
}

@media screen and (width: 320px) and (height: 568px) and (orientation: portrait), screen and (width: 360px) and (height: 780px) and (orientation: portrait), screen and (width: 360px) and (height: 800px) and (orientation: portrait), screen and (width: 375px) and (height: 667px) and (orientation: portrait), screen and (width: 375px) and (height: 812px) and (orientation: portrait), screen and (width: 380px) and (height: 820px) and (orientation: portrait), screen and (width: 385px) and (height: 854px) and (orientation: portrait), screen and (width: 390px) and (height: 844px) and (orientation: portrait), screen and (width: 393px) and (height: 852px) and (orientation: portrait) {
  /* line 908, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 1.64rem;
  }
}

@media (min-width: 390px) and (max-width: 450px) {
  /* line 917, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-top: 220px !important;
    padding-bottom: 120px !important;
  }
  /* line 923, app/assets/stylesheets/_home.scss */
  .section-home__text {
    margin-top: calc(2rem + 80px);
  }
  /* line 928, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    margin-top: -20px;
    margin-bottom: 0;
  }
  /* line 933, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 1rem;
    margin-bottom: 0;
    gap: 1rem;
  }
  /* line 939, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: 210px;
  }
}

@media screen and (width: 1133px) and (height: 744px) and (orientation: landscape), screen and (width: 1024px) and (height: 768px) and (orientation: landscape), screen and (width: 1280px) and (height: 800px) and (orientation: landscape), screen and (width: 1333px) and (height: 800px) and (orientation: landscape), screen and (width: 1080px) and (height: 810px) and (orientation: landscape), screen and (width: 1180px) and (height: 820px) and (orientation: landscape), screen and (width: 1112px) and (height: 834px) and (orientation: landscape), screen and (width: 1194px) and (height: 834px) and (orientation: landscape), screen and (width: 1210px) and (height: 834px) and (orientation: landscape), screen and (width: 1366px) and (height: 1024px) and (orientation: landscape), screen and (width: 1376px) and (height: 1032px) and (orientation: landscape) {
  /* line 957, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: -30px !important;
  }
}

@media screen and (width: 390px) and (height: 844px) and (orientation: portrait), screen and (width: 393px) and (height: 852px) and (orientation: portrait), screen and (width: 393px) and (height: 873px) and (orientation: portrait), screen and (width: 402px) and (height: 874px) and (orientation: portrait), screen and (width: 412px) and (height: 892px) and (orientation: portrait), screen and (width: 414px) and (height: 896px) and (orientation: portrait), screen and (width: 420px) and (height: 912px) and (orientation: portrait), screen and (width: 428px) and (height: 926px) and (orientation: portrait), screen and (width: 430px) and (height: 932px) and (orientation: portrait), screen and (width: 440px) and (height: 956px) and (orientation: portrait) {
  /* line 974, app/assets/stylesheets/_home.scss */
  .section-home__text {
    margin-top: calc(2rem + 70px);
  }
}

@media screen and (width: 360px) and (height: 780px) and (orientation: portrait), screen and (width: 360px) and (height: 800px) and (orientation: portrait), screen and (width: 390px) and (height: 844px) and (orientation: portrait), screen and (width: 393px) and (height: 852px) and (orientation: portrait), screen and (width: 393px) and (height: 873px) and (orientation: portrait), screen and (width: 402px) and (height: 874px) and (orientation: portrait), screen and (width: 412px) and (height: 892px) and (orientation: portrait), screen and (width: 412px) and (height: 915px) and (orientation: portrait), screen and (width: 414px) and (height: 896px) and (orientation: portrait), screen and (width: 420px) and (height: 912px) and (orientation: portrait), screen and (width: 428px) and (height: 926px) and (orientation: portrait), screen and (width: 430px) and (height: 932px) and (orientation: portrait), screen and (width: 440px) and (height: 956px) and (orientation: portrait) {
  /* line 995, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: 190px !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1032px) and (orientation: portrait) {
  /* line 1005, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh !important;
    margin-bottom: 220px;
  }
  /* line 1011, app/assets/stylesheets/_home.scss */
  .section-home__text {
    margin-top: 100px !important;
  }
}

@media screen and (width: 800px) and (height: 1280px) and (orientation: portrait), screen and (width: 800px) and (height: 1333px) and (orientation: portrait), screen and (width: 810px) and (height: 1080px) and (orientation: portrait), screen and (width: 820px) and (height: 1180px) and (orientation: portrait), screen and (width: 834px) and (height: 1112px) and (orientation: portrait), screen and (width: 834px) and (height: 1194px) and (orientation: portrait), screen and (width: 834px) and (height: 1210px) and (orientation: portrait) {
  /* line 1025, app/assets/stylesheets/_home.scss */
  .section-home__content {
    margin-top: 100px !important;
  }
}

@media screen and (width: 810px) and (height: 1080px) and (orientation: portrait), screen and (width: 820px) and (height: 1180px) and (orientation: portrait), screen and (width: 834px) and (height: 1112px) and (orientation: portrait), screen and (width: 834px) and (height: 1194px) and (orientation: portrait) {
  /* line 1036, app/assets/stylesheets/_home.scss */
  .section-home__content {
    margin-top: 10px !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1032px) and (orientation: portrait) {
  /* line 1047, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__image img {
    transition: none !important;
  }
  /* line 1050, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__image img:hover {
    transform: translateX(-50%) !important;
  }
  /* line 1058, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-container:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  /* line 1062, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-container:hover * {
    animation: none !important;
    transform: none !important;
  }
  /* line 1069, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title,
.home-is-touch .section-home .section-home__text .animated-text,
.home-is-touch .section-home .section-home__text .animated-title span,
.home-is-touch .section-home .section-home__text .animated-text span {
    pointer-events: none;
  }
  /* line 1079, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
  }
  /* line 1083, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title span {
    margin-right: 5px !important;
  }
  /* line 1086, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title span:last-child {
    margin-right: 0 !important;
  }
  /* line 1091, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .bracket {
    transition: none !important;
    transform: none !important;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
  }
  /* line 1099, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__buttons,
.home-is-touch .section-home .section-home__buttons .btn,
.home-is-touch .section-home .section-home__buttons.animated-buttons .btn {
    transform: none !important;
  }
  /* line 1104, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__buttons:hover,
.home-is-touch .section-home .section-home__buttons .btn:hover,
.home-is-touch .section-home .section-home__buttons.animated-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

@media screen and (width: 960px) and (height: 600px) and (orientation: landscape) {
  /* line 1116, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 120px !important;
  }
  /* line 1121, app/assets/stylesheets/_home.scss */
  .section-home__content {
    padding-top: 80px !important;
  }
  /* line 1125, app/assets/stylesheets/_home.scss */
  .section-home__text {
    max-width: none;
    width: 100%;
  }
  /* line 1130, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  /* line 1137, app/assets/stylesheets/_home.scss */
  .section-home__text .bracket {
    display: none;
  }
  /* line 1142, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: 120px !important;
  }
}

@media screen and (width: 1133px) and (height: 744px) and (orientation: landscape), screen and (width: 1024px) and (height: 768px) and (orientation: landscape), screen and (width: 1280px) and (height: 800px) and (orientation: landscape), screen and (width: 1333px) and (height: 800px) and (orientation: landscape) {
  /* line 1153, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}

@media screen and (width: 1133px) and (height: 744px) and (orientation: landscape) {
  /* line 1163, app/assets/stylesheets/_home.scss */
  .section-home__content {
    margin-top: -9px;
  }
}

@media screen and (width: 1210px) and (height: 834px) and (orientation: landscape) {
  /* line 1170, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    margin-left: 50px;
  }
}

@media screen and (width: 1280px) and (height: 800px) and (orientation: landscape), screen and (width: 1333px) and (height: 800px) and (orientation: landscape) {
  /* line 1179, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    margin-top: 0 !important;
    position: relative;
    top: 20px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1376px) and (orientation: landscape) {
  /* line 1192, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__image img {
    transition: none !important;
    pointer-events: none;
  }
  /* line 1196, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__image img:hover {
    transform: none !important;
  }
  /* line 1203, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-container:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  /* line 1207, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-container:hover * {
    animation: none !important;
    transform: none !important;
  }
  /* line 1214, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title,
.home-is-touch .section-home .section-home__text .animated-text,
.home-is-touch .section-home .section-home__text .animated-title span,
.home-is-touch .section-home .section-home__text .animated-text span {
    pointer-events: none;
  }
  /* line 1224, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
  }
  /* line 1228, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title span {
    margin-right: 5px !important;
  }
  /* line 1231, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .animated-title span:last-child {
    margin-right: 0 !important;
  }
  /* line 1236, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__text .bracket {
    transition: none !important;
    transform: none !important;
    pointer-events: none;
  }
  /* line 1243, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__buttons,
.home-is-touch .section-home .section-home__buttons .btn,
.home-is-touch .section-home .section-home__buttons.animated-buttons .btn {
    transform: none !important;
  }
  /* line 1248, app/assets/stylesheets/_home.scss */
  .home-is-touch .section-home .section-home__buttons:hover,
.home-is-touch .section-home .section-home__buttons .btn:hover,
.home-is-touch .section-home .section-home__buttons.animated-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 992px) {
  /* line 1260, app/assets/stylesheets/_home.scss */
  .section-home .animated-title,
.section-home .animated-text,
.section-home .animated-title span,
.section-home .animated-text span {
    pointer-events: none;
  }
}

@media screen and (min-width: 568px) and (max-width: 956px) and (orientation: landscape) {
  /* line 1274, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
  /* line 1280, app/assets/stylesheets/_home.scss */
  .section-home__content {
    padding-top: 58px !important;
  }
  /* line 1285, app/assets/stylesheets/_home.scss */
  .section-home__image {
    display: none;
  }
  /* line 1290, app/assets/stylesheets/_home.scss */
  .section-home__text {
    margin-top: 0;
  }
  /* line 1293, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  /* line 1299, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:hover {
    transform: none;
    box-shadow: none;
  }
  /* line 1304, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container:hover * {
    animation: none !important;
    transform: none !important;
  }
  /* line 1312, app/assets/stylesheets/_home.scss */
  .section-home__text .bracket {
    display: none;
  }
  /* line 1318, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 1.0rem;
    line-height: 1.4;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
  /* line 1329, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 1rem;
    margin-bottom: 0;
    gap: 1rem;
  }
  /* line 1335, app/assets/stylesheets/_home.scss */
  .section-home__buttons .btn {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }
}

@media screen and (min-width: 568px) and (max-width: 853px) and (min-height: 321px) and (max-height: 380px) and (orientation: landscape) {
  /* line 1347, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 105px !important;
    padding-bottom: 30px !important;
  }
  /* line 1352, app/assets/stylesheets/_home.scss */
  .section-home__content {
    padding-top: 0 !important;
  }
  /* line 1356, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }
  /* line 1362, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  /* line 1368, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  /* line 1373, app/assets/stylesheets/_home.scss */
  .section-home__buttons .btn {
    font-size: 0.95rem;
    padding: 0.25rem 0.5rem;
  }
}

@media screen and (min-width: 568px) and (max-width: 853px) and (max-height: 320px) and (orientation: landscape) {
  /* line 1385, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 90px !important;
    padding-bottom: 20px !important;
  }
  /* line 1390, app/assets/stylesheets/_home.scss */
  .section-home__content {
    padding-top: 0 !important;
  }
  /* line 1394, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
  }
  /* line 1400, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-text {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
  }
  /* line 1406, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 2rem;
  }
}

@media screen and (width: 800px) and (height: 360px) and (orientation: landscape) {
  /* line 1413, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 115px !important;
  }
}

@media screen and (width: 812px) and (height: 375px) and (orientation: landscape) {
  /* line 1419, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 115px !important;
  }
}

@media screen and (width: 820px) and (height: 380px) and (orientation: landscape) {
  /* line 1425, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 115px !important;
  }
}

@media screen and (width: 926px) and (height: 428px) and (orientation: landscape) {
  /* line 1431, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 60px !important;
  }
}

@media screen and (width: 932px) and (height: 430px) and (orientation: landscape) {
  /* line 1437, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 60px !important;
  }
}

@media screen and (width: 956px) and (height: 440px) and (orientation: landscape) {
  /* line 1443, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 60px !important;
  }
}

@media screen and (width: 667px) and (height: 375px) and (orientation: landscape) {
  /* line 1450, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 95px !important;
  }
}

@media screen and (width: 854px) and (height: 385px) and (orientation: landscape) {
  /* line 1456, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 40px !important;
  }
}

@media screen and (width: 844px) and (height: 390px) and (orientation: landscape) {
  /* line 1462, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 40px !important;
  }
}

@media screen and (width: 852px) and (height: 393px) and (orientation: landscape) {
  /* line 1468, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 40px !important;
  }
}

@media screen and (width: 873px) and (height: 393px) and (orientation: landscape) {
  /* line 1474, app/assets/stylesheets/_home.scss */
  .section-home {
    padding-top: 40px !important;
  }
}

@media (min-width: 360px) and (max-width: 374px) {
  /* line 1481, app/assets/stylesheets/_home.scss */
  .section-home {
    min-height: 100vh;
    padding-top: 220px !important;
    padding-bottom: 120px !important;
  }
  /* line 1487, app/assets/stylesheets/_home.scss */
  .section-home__text .animated-container {
    margin-top: -20px;
    margin-bottom: 0;
  }
  /* line 1492, app/assets/stylesheets/_home.scss */
  .section-home__buttons {
    margin-top: 1rem;
    margin-bottom: 0;
    gap: 1rem;
  }
  /* line 1498, app/assets/stylesheets/_home.scss */
  .section-home__image img {
    top: 210px;
  }
}

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

/* line 23, app/assets/stylesheets/_contact_modal.scss */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* line 30, 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;
  position: relative;
  opacity: 0;
  transform: translateY(-20px) scale(0.96);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* line 43, app/assets/stylesheets/_contact_modal.scss */
.modal-overlay.active .modal-container {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* line 48, 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 59, app/assets/stylesheets/_contact_modal.scss */
.modal-header h2 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

/* line 66, 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 75, app/assets/stylesheets/_contact_modal.scss */
.modal-header .modal-close:hover {
  color: white;
}

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

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

/* line 93, app/assets/stylesheets/_contact_modal.scss */
.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 99, app/assets/stylesheets/_contact_modal.scss */
.contact-form-hidden-fields {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* line 107, app/assets/stylesheets/_contact_modal.scss */
.contact-form__honeypot {
  display: none !important;
}

/* line 111, app/assets/stylesheets/_contact_modal.scss */
.contact-form-column {
  width: 100%;
}

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

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

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

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

/* line 137, 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 146, 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 153, app/assets/stylesheets/_contact_modal.scss */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* line 166, app/assets/stylesheets/_contact_modal.scss */
.form-submit {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* line 174, app/assets/stylesheets/_contact_modal.scss */
.form-submit .contact-form-turnstile {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* line 180, 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 192, app/assets/stylesheets/_contact_modal.scss */
.form-submit .btn-primary:hover {
  background-color: #1f2d63;
}

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

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

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

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

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

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

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

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

@media (min-width: 768px) and (max-width: 992px) and (orientation: landscape) {
  /* line 236, app/assets/stylesheets/_contact_modal.scss */
  .modal-container {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 243, app/assets/stylesheets/_contact_modal.scss */
  .contact-form-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  /* line 249, app/assets/stylesheets/_contact_modal.scss */
  .contact-form-column--left,
.contact-form-column--right {
    flex: 1;
  }
  /* line 254, app/assets/stylesheets/_contact_modal.scss */
  .contact-form-column--right .form-group textarea {
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  /* line 261, app/assets/stylesheets/_contact_modal.scss */
  .modal-container {
    width: 95%;
    max-height: 85vh;
  }
  /* line 266, app/assets/stylesheets/_contact_modal.scss */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  /* line 272, 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 */
.admin-experience-container .experience-list__item, .admin-experience-container .experience-list__item .experience-list__item {
  transition: none !important;
}

/* line 178, 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 184, 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 191, 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 199, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 204, 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 218, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-header .company {
  flex: 1;
}

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

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

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

/* line 236, 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 245, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-body .description {
  color: rgba(32, 47, 102, 0.9);
  margin-bottom: 0;
}

/* line 251, 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 257, app/assets/stylesheets/_form_experience.scss */
.experience-list__item-actions a {
  margin-right: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

/* line 296, 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: -30px;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: rgba(238, 237, 236, 0.3);
  z-index: 1;
}

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

/* line 50, app/assets/stylesheets/_xp_pro.scss */
.section-experience__content {
  position: relative;
  z-index: 1;
  padding-left: 70px;
}

/* line 58, app/assets/stylesheets/_xp_pro.scss */
.experience-modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 74, app/assets/stylesheets/_xp_pro.scss */
.experience-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* line 81, app/assets/stylesheets/_xp_pro.scss */
.experience-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  margin: 0 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* line 97, app/assets/stylesheets/_xp_pro.scss */
.experience-modal-overlay.active .experience-modal {
  transform: translateY(0);
}

/* line 102, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* line 109, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2b3f8a 0%, #1f2d63 100%);
  color: #eeedec;
}

/* line 118, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__logo {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 129, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 136, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__titles {
  flex: 1;
  display: flex;
  align-items: center;
}

/* line 141, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__titles .experience-modal__company {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

/* line 148, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__job-header {
  display: grid;
  grid-template-columns: 7fr 1fr;
  grid-template-rows: 1fr;
  padding: 0.5rem 1.5rem;
  background-color: #eeedec;
  color: #2b3f8a;
  border-bottom: 1px solid rgba(32, 47, 102, 0.08);
}

/* line 157, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__job-header .experience-item__header {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

/* line 166, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__job-header .job-title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b3f8a;
  flex: 4 1 0;
  min-width: 0;
}

/* line 177, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__job-header .employment-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: rgba(43, 63, 138, 0.08);
  color: #2b3f8a;
  font-size: 0.9rem;
  flex: 1 0 auto;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 576px) {
  /* line 195, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header .experience-item__header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  /* line 201, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header .job-title,
.experience-modal__job-header .employment-type {
    flex: 0 0 100%;
    text-align: center;
  }
}

/* line 209, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__meta {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.08);
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.8);
}

/* line 215, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__meta .experience-item__meta {
  margin: 0;
}

/* line 220, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__body {
  padding: 1.5rem;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* line 229, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  max-height: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 47, 102, 0.35) transparent;
}

/* line 238, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description::-webkit-scrollbar {
  width: 6px;
}

/* line 242, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description::-webkit-scrollbar-track {
  background: transparent;
}

/* line 246, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description::-webkit-scrollbar-thumb {
  background-color: rgba(32, 47, 102, 0.35);
  border-radius: 3px;
}

/* line 251, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description::-webkit-scrollbar-thumb:hover {
  background-color: rgba(32, 47, 102, 0.5);
}

/* line 255, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__description .experience-item__description {
  display: block;
  margin-bottom: 0;
}

/* line 261, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #202f66;
  transition: 0.2s ease;
  z-index: 3100;
}

/* line 279, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__close i {
  font-size: 1rem;
}

/* line 283, app/assets/stylesheets/_xp_pro.scss */
.experience-modal__close:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  /* line 290, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal {
    max-width: 95%;
    max-height: 90vh;
  }
  /* line 295, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__header {
    padding: 1rem;
  }
  /* line 299, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__body {
    padding: 1rem;
  }
}

@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 timelineDotPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 371, 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: visible;
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease;
  transform: translateX(300px);
}

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

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

/* line 395, app/assets/stylesheets/_xp_pro.scss */
.company-card.animate-in .experience-item::before {
  animation: timelineDotPop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1.1) 0.7s both;
}

/* line 399, app/assets/stylesheets/_xp_pro.scss */
.company-card.animate-out .experience-item::before {
  opacity: 0;
  transform: scale(0);
}

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

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

/* line 426, 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 436, 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);
}

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

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

/* line 466, 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 484, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .logo-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* line 489, 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 501, app/assets/stylesheets/_xp_pro.scss */
.company-card__header .company-name h3 {
  margin-bottom: 0.25rem;
  color: #eeedec !important;
  font-size: 1.5rem;
}

/* line 509, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__actions {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 47, 102, 0.06);
  display: flex;
  justify-content: center;
}

/* line 517, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b3f8a 0%, #1f2d63 100%);
  color: #eeedec;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(43, 63, 138, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  width: 100%;
  justify-content: center;
}

/* line 537, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button::after {
  content: '›';
  font-size: 0.9em;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

/* line 544, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button:hover {
  background: linear-gradient(135deg, #2f4496 0%, #253677 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(43, 63, 138, 0.45);
}

/* line 549, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button:hover::after {
  transform: translateX(3px);
}

/* line 554, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 559, app/assets/stylesheets/_xp_pro.scss */
.company-card .experience-item__more-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 63, 138, 0.35);
}

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

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

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

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

/* line 584, app/assets/stylesheets/_xp_pro.scss */
.experience-item::before {
  content: '';
  position: absolute;
  width: 15px !important;
  height: 15px !important;
  border-radius: 50%;
  background-color: #2b3f8a;
  top: 24px;
  left: -54px !important;
  z-index: 2;
  --dot-translate: none;
  opacity: 0;
  transform: var(--dot-translate) scale(0);
  will-change: transform, opacity;
}

/* line 600, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

/* line 607, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header .job-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: #202f66;
  flex: 4 1 0;
  min-width: 0;
}

/* line 616, app/assets/stylesheets/_xp_pro.scss */
.experience-item__header .employment-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  flex: 1 0 auto;
  white-space: nowrap;
  text-align: center;
}

/* line 633, 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 641, app/assets/stylesheets/_xp_pro.scss */
.experience-item__meta .dates,
.experience-item__meta .location {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

/* line 689, 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 700, 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: 0;
  transform: scale(0);
}

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

@media (max-width: 768px) {
  /* line 724, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__timeline {
    padding-left: 50px;
  }
  /* line 732, app/assets/stylesheets/_xp_pro.scss */
  .company-card__header .company-name h3 {
    font-size: 1.3rem;
  }
  /* line 740, app/assets/stylesheets/_xp_pro.scss */
  .experience-item__meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  /* line 745, app/assets/stylesheets/_xp_pro.scss */
  .experience-item::before {
    left: 18px;
  }
  /* line 751, app/assets/stylesheets/_xp_pro.scss */
  .experience-item__more-button.js-experience-more:hover {
    transform: none;
    box-shadow: 0 6px 16px rgba(43, 63, 138, 0.35);
  }
  /* line 756, app/assets/stylesheets/_xp_pro.scss */
  .logo-preview {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* line 762, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__timeline {
    padding-left: 0;
  }
  /* line 765, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__timeline::before {
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: #ea1d21;
  }
  /* line 773, app/assets/stylesheets/_xp_pro.scss */
  .section-experience__content {
    padding-left: 0;
  }
  /* line 777, app/assets/stylesheets/_xp_pro.scss */
  .experience-item::before {
    left: 50%;
    background-color: #ea1d21;
  }
}

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

@media (min-width: 769px) {
  /* line 800, app/assets/stylesheets/_xp_pro.scss */
  .section-experience .company-card__header .logo {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  /* line 804, app/assets/stylesheets/_xp_pro.scss */
  .section-experience .company-card__header .logo:hover {
    transform: scale(1.05);
  }
  /* line 809, app/assets/stylesheets/_xp_pro.scss */
  .section-experience .company-card__header .logo,
.section-experience .company-card__header .company-name {
    cursor: pointer;
  }
  /* line 813, app/assets/stylesheets/_xp_pro.scss */
  .section-experience .company-card__header .logo:hover ~ .logo-preview, .section-experience .company-card__header .logo:focus ~ .logo-preview,
.section-experience .company-card__header .company-name:hover ~ .logo-preview,
.section-experience .company-card__header .company-name:focus ~ .logo-preview {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (width: 568px) and (height: 320px) and (orientation: landscape), screen and (width: 780px) and (height: 360px) and (orientation: landscape), screen and (width: 800px) and (height: 360px) and (orientation: landscape), screen and (width: 667px) and (height: 375px) and (orientation: landscape), screen and (width: 812px) and (height: 375px) and (orientation: landscape), screen and (width: 820px) and (height: 380px) and (orientation: landscape), screen and (width: 854px) and (height: 385px) and (orientation: landscape), screen and (width: 844px) and (height: 390px) and (orientation: landscape), screen and (width: 852px) and (height: 393px) and (orientation: landscape), screen and (width: 873px) and (height: 393px) and (orientation: landscape), screen and (width: 874px) and (height: 402px) and (orientation: landscape), screen and (width: 892px) and (height: 412px) and (orientation: landscape), screen and (width: 915px) and (height: 412px) and (orientation: landscape), screen and (width: 896px) and (height: 414px) and (orientation: landscape), screen and (width: 912px) and (height: 420px) and (orientation: landscape), screen and (width: 926px) and (height: 428px) and (orientation: landscape), screen and (width: 932px) and (height: 430px) and (orientation: landscape), screen and (width: 956px) and (height: 440px) and (orientation: landscape) {
  /* line 846, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 1rem;
    row-gap: 0;
    align-items: stretch;
  }
  /* line 858, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__header {
    grid-column: 1 / -1;
  }
  /* line 862, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start;
    position: relative;
  }
  /* line 869, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__meta {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    align-self: end;
  }
  /* line 876, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__body {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }
  /* line 882, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header .experience-item__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.25rem;
  }
  /* line 891, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header .job-title {
    padding-right: 0;
    text-align: left;
    width: 100%;
  }
  /* line 898, app/assets/stylesheets/_xp_pro.scss */
  .experience-modal__job-header .employment-type {
    position: static;
    top: auto;
    right: auto;
    margin-top: 0.25rem;
    white-space: nowrap;
    align-self: center;
    text-align: center;
    align-items: stretch;
  }
}

/* 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: 150px;
  text-align: center;
  vertical-align: middle;
}

/* line 11, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .actions-cell__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

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

/* line 27, 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 41, app/assets/stylesheets/_action_buttons.scss */
.actions-cell .action-button i {
  font-size: 0.875rem;
}

/* line 45, 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 52, 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 59, 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 70, app/assets/stylesheets/_action_buttons.scss */
.development-image-item .actions-cell {
  margin-top: 8px;
  width: 100%;
}

/* line 74, 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;
  position: relative;
}

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

/* line 14, 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 18, 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 33, app/assets/stylesheets/_projects.scss */
.section-projects__header .title-container[data-type="development"] .project-card__description {
  margin-top: auto;
}

/* line 37, 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 60, app/assets/stylesheets/_projects.scss */
.section-projects__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* line 65, 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 75, 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 83, app/assets/stylesheets/_projects.scss */
.section-projects__filters .filters-list .filter-item:hover {
  color: #202f66;
}

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

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

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

/* line 107, app/assets/stylesheets/_projects.scss */
.project-card {
  position: relative;
  z-index: 10;
}

/* line 111, app/assets/stylesheets/_projects.scss */
.project-card:hover, .project-card:focus-within {
  z-index: 70;
}

/* line 117, 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 143, 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 149, 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 156, 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 164, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="development"] .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 170, 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 183, 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 191, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] {
  padding: 1.5rem;
}

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

/* line 200, 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 206, 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 217, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* line 222, 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 232, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

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

/* line 241, 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 249, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="development"] .project-actions .btn-icon:hover {
  background-color: #e9ecef;
  color: #2b3f8a;
}

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

/* line 262, 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 271, 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 276, 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 282, 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 296, 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 305, 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 315, 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 329, 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 342, 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 361, 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 378, 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 384, 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 392, 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 398, 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 405, 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 411, 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 417, 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 429, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] .project-card__title {
  color: #eeedec;
}

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

/* line 438, 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 464, 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 470, 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 477, 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 485, app/assets/stylesheets/_projects.scss */
.project-card[data-type__header="retouche"] .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 491, 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 504, 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 512, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] {
  padding: 1.5rem;
}

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

/* line 521, 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 527, 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 538, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* line 543, 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 553, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

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

/* line 562, 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 570, app/assets/stylesheets/_projects.scss */
.project-card[data-type__body="retouche"] .project-actions .btn-icon:hover {
  background-color: #e9ecef;
  color: #2b3f8a;
}

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

/* line 583, 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 592, 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 597, 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 603, 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 617, 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 626, 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 636, 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 653, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"][data-type="development"] .project-card[data-type__description="retouche"] {
  margin-top: auto;
}

/* line 657, 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 670, 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 689, 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 706, 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 712, 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 722, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-card__title {
  color: #eeedec;
}

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

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

/* line 740, 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 748, 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 760, 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 766, 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 776, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container {
  position: relative;
  overflow: hidden;
}

/* line 780, 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 788, 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 796, 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 807, 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 820, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container.side-by-side-container.zoomed .image-half {
  transform: scale(1);
}

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

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

/* line 834, 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 845, 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 858, 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 871, app/assets/stylesheets/_projects.scss */
.project-card[data-type="retouche"] .project-image-container[data-visual-type="single"] {
  position: relative;
  overflow: hidden;
}

/* line 876, 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 889, 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 904, 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 921, 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 1052, app/assets/stylesheets/_projects.scss */
.project-card[data-type="development"] {
  /* Styles d'optimisation pour les animations */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

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

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

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

/* line 1072, 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;
}

@media (max-width: 768px) {
  /* line 1082, app/assets/stylesheets/_projects.scss */
  .project-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  /* line 1087, app/assets/stylesheets/_projects.scss */
  .project-card .project-actions .btn:hover,
.project-card__actions .btn:hover {
    transform: none !important;
  }
  /* line 1092, app/assets/stylesheets/_projects.scss */
  .btn.btn-primary.js-project-details:hover {
    transform: none !important;
  }
}

/* line 5, app/assets/stylesheets/_sections.scss */
.section {
  position: relative;
  padding: 3rem 0;
  transition: background-color 1.2s ease;
  min-height: auto;
  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;
}

@media (max-width: 992px) {
  /* line 24, app/assets/stylesheets/_sections.scss */
  .section {
    min-height: auto;
  }
}

@media (min-width: 1200px) {
  /* line 30, app/assets/stylesheets/_sections.scss */
  .section {
    min-height: 100vh;
  }
}

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

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

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

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

/* line 55, 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: auto;
  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;
}

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

@media (max-width: 992px) {
  /* line 43, app/assets/stylesheets/_projects_transition.scss */
  #projects-section {
    min-height: auto;
  }
}

@media (min-width: 1200px) {
  /* line 49, app/assets/stylesheets/_projects_transition.scss */
  #projects-section {
    min-height: 100vh;
  }
}

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

/* line 62, 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 70, 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 79, 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 85, app/assets/stylesheets/_projects_transition.scss */
.project-card__image {
  height: 200px;
  overflow: hidden;
}

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

/* line 96, 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 108, app/assets/stylesheets/_projects_transition.scss */
.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

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

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

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

/* line 129, 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 140, app/assets/stylesheets/_projects_transition.scss */
.project-card__description {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

/* line 150, 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 159, app/assets/stylesheets/_projects_transition.scss */
.project-card__actions .btn i {
  margin-right: 0.25rem;
}

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

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

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

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

@media (max-width: 768px) {
  /* line 185, app/assets/stylesheets/_projects_transition.scss */
  .project-card:hover .project-card__image img {
    transform: none;
  }
}

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

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

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

/* line 214, 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;
  margin-left: 30px;
}

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

/* line 475, 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 482, 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 491, 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 497, app/assets/stylesheets/_admin_home.scss */
.detail-info .details-list .detail-item:last-child {
  border-bottom: none;
}

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

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

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

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

/* line 525, 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 533, app/assets/stylesheets/_admin_home.scss */
.detail-actions .btn i {
  font-size: 0.9rem;
}

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

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

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

/* line 555, 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 */
.admin-theme-select {
  margin-top: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 573, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* line 580, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #202f66;
}

/* line 586, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__header .current-theme {
  font-size: 0.95rem;
  color: #2b3f8a;
}

/* line 590, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__header .current-theme strong {
  color: #ea1d21;
}

/* line 597, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 602, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .form-group label {
  font-weight: 600;
  color: #202f66;
}

/* line 607, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .form-group .form-select {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(108, 117, 125, 0.3);
  background-color: #fff;
  font-size: 1rem;
  transition: 0.2s ease;
}

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

/* line 623, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(43, 63, 138, 0.06), rgba(43, 63, 138, 0.02));
  border-radius: 8px;
  border: 1px solid rgba(43, 63, 138, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 633, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #202f66;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* line 642, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group h3::before {
  content: '\f0c2';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: #2b3f8a;
  opacity: 0.7;
}

/* line 652, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group__hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.7);
  line-height: 1.5;
}

/* line 659, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.5rem;
}

/* line 665, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid rgba(43, 63, 138, 0.15);
  background: rgba(43, 63, 138, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* line 677, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox:hover {
  border-color: rgba(43, 63, 138, 0.4);
  background: rgba(43, 63, 138, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* line 684, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox--active {
  border-color: rgba(43, 63, 138, 0.5);
  background: rgba(43, 63, 138, 0.12);
}

/* line 689, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox--checked {
  background: rgba(43, 63, 138, 0.08);
}

/* line 692, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox--checked .theme-checkbox__label {
  text-decoration: line-through;
  color: rgba(32, 47, 102, 0.45);
}

/* line 697, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox--checked .theme-checkbox__badge {
  background: rgba(43, 63, 138, 0.12);
  color: rgba(43, 63, 138, 0.7);
}

/* line 703, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* line 709, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(32, 47, 102, 0.85);
}

/* line 715, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__badge {
  align-self: flex-start;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(43, 63, 138, 0.18);
  color: #2b3f8a;
  text-transform: uppercase;
}

/* line 727, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__input {
  --size: 1.25rem;
  appearance: none;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 2px solid rgba(43, 63, 138, 0.5);
  background: #fff;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 738, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__input:hover {
  border-color: rgba(43, 63, 138, 0.7);
}

/* line 742, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__input:checked {
  border-color: rgba(43, 63, 138, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 63, 138, 0.1);
}

/* line 748, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__input:checked::after {
  content: '';
  position: absolute;
  inset: 0.18rem;
  border-radius: 50%;
  background: #2b3f8a;
}

/* line 756, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-disable-group .theme-checkbox .theme-checkbox__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  /* line 623, app/assets/stylesheets/_admin_home.scss */
  .admin-theme-select__body .theme-disable-group {
    padding: 0.5rem;
  }
  /* line 766, app/assets/stylesheets/_admin_home.scss */
  .admin-theme-select__body .theme-disable-group .theme-checkbox__content {
    padding: 0.5rem 1rem;
  }
}

/* line 772, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-select-form__actions {
  margin-top: 1rem;
}

/* line 775, app/assets/stylesheets/_admin_home.scss */
.admin-theme-select__body .theme-select-form__actions .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
}

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

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

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

/* line 811, 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 817, app/assets/stylesheets/_admin_home.scss */
.admin-home-empty-state h3 {
  font-size: 1.2rem;
  color: #202f66;
  margin-bottom: 0.5rem;
}

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

/* line 828, 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 838, 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 .education-modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 53, app/assets/stylesheets/_education.scss */
.section-education .education-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* line 60, app/assets/stylesheets/_education.scss */
.section-education .education-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  margin: 0 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 74, app/assets/stylesheets/_education.scss */
.section-education .education-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* line 85, app/assets/stylesheets/_education.scss */
.section-education .education-modal-overlay.active .education-modal__content {
  transform: translateY(0);
}

/* line 89, app/assets/stylesheets/_education.scss */
.section-education .education-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2b3f8a 0%, #1f2d63 100%);
  color: #eeedec;
}

/* line 98, app/assets/stylesheets/_education.scss */
.section-education .education-modal__logo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: white;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 111, app/assets/stylesheets/_education.scss */
.section-education .education-modal__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 118, app/assets/stylesheets/_education.scss */
.section-education .education-modal__titles {
  flex: 1;
  display: flex;
  align-items: center;
}

/* line 123, app/assets/stylesheets/_education.scss */
.section-education .education-modal__titles .education-modal__school {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

/* line 130, app/assets/stylesheets/_education.scss */
.section-education .education-modal__degree-header {
  padding: 0.5rem 1.5rem;
  background-color: #eeedec;
  border-bottom: 1px solid rgba(32, 47, 102, 0.08);
}

/* line 135, app/assets/stylesheets/_education.scss */
.section-education .education-modal__degree-header .education-item__header {
  margin: 0;
}

/* line 140, app/assets/stylesheets/_education.scss */
.section-education .education-modal__meta {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(32, 47, 102, 0.08);
  font-size: 0.9rem;
  color: rgba(32, 47, 102, 0.8);
}

/* line 146, app/assets/stylesheets/_education.scss */
.section-education .education-modal__meta .education-item__meta {
  margin: 0;
}

/* line 151, app/assets/stylesheets/_education.scss */
.section-education .education-modal__body {
  padding: 1.5rem;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* line 160, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  max-height: 100%;
  color: rgba(32, 47, 102, 0.9);
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 47, 102, 0.35) transparent;
}

/* line 169, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description::-webkit-scrollbar {
  width: 6px;
}

/* line 173, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description::-webkit-scrollbar-track {
  background: transparent;
}

/* line 177, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description::-webkit-scrollbar-thumb {
  background-color: rgba(32, 47, 102, 0.35);
  border-radius: 3px;
}

/* line 182, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description::-webkit-scrollbar-thumb:hover {
  background-color: rgba(32, 47, 102, 0.5);
}

/* line 186, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description .education-item__description,
.section-education .education-modal__description .education-item__diploma,
.section-education .education-modal__description .education-item__gallery {
  display: block;
  margin-bottom: 1rem;
}

/* line 194, app/assets/stylesheets/_education.scss */
.section-education .education-modal__description .education-item__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* line 201, app/assets/stylesheets/_education.scss */
.section-education .education-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #202f66;
  transition: 0.2s ease;
  z-index: 3100;
}

/* line 219, app/assets/stylesheets/_education.scss */
.section-education .education-modal__close i {
  font-size: 1rem;
}

/* line 223, app/assets/stylesheets/_education.scss */
.section-education .education-modal__close:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 230, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 47, 102, 0.85);
  z-index: 3200;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 243, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay__content {
  max-width: 90%;
  max-height: 90vh;
}

/* line 248, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay__image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
}

/* line 257, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #202f66;
  transition: 0.2s ease;
  z-index: 3250;
}

/* line 275, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay__close i {
  font-size: 1rem;
}

/* line 279, app/assets/stylesheets/_education.scss */
.section-education .education-image-overlay__close:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  /* line 286, app/assets/stylesheets/_education.scss */
  .section-education .education-modal {
    max-width: 95%;
    max-height: 90vh;
  }
  /* line 291, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__header {
    padding: 1rem;
  }
  /* line 295, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__body {
    padding: 1rem;
  }
}

@media screen and (width: 568px) and (height: 320px) and (orientation: landscape), screen and (width: 780px) and (height: 360px) and (orientation: landscape), screen and (width: 800px) and (height: 360px) and (orientation: landscape), screen and (width: 667px) and (height: 375px) and (orientation: landscape), screen and (width: 812px) and (height: 375px) and (orientation: landscape), screen and (width: 820px) and (height: 380px) and (orientation: landscape), screen and (width: 854px) and (height: 385px) and (orientation: landscape), screen and (width: 844px) and (height: 390px) and (orientation: landscape), screen and (width: 852px) and (height: 393px) and (orientation: landscape), screen and (width: 873px) and (height: 393px) and (orientation: landscape), screen and (width: 874px) and (height: 402px) and (orientation: landscape), screen and (width: 892px) and (height: 412px) and (orientation: landscape), screen and (width: 915px) and (height: 412px) and (orientation: landscape), screen and (width: 896px) and (height: 414px) and (orientation: landscape), screen and (width: 912px) and (height: 420px) and (orientation: landscape), screen and (width: 926px) and (height: 428px) and (orientation: landscape), screen and (width: 932px) and (height: 430px) and (orientation: landscape), screen and (width: 956px) and (height: 440px) and (orientation: landscape) {
  /* line 322, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 1rem;
    row-gap: 0;
    align-items: stretch;
  }
  /* line 334, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__header {
    grid-column: 1 / -1;
  }
  /* line 338, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__degree-header {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start;
  }
  /* line 344, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__meta {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    align-self: end;
  }
  /* line 351, app/assets/stylesheets/_education.scss */
  .section-education .education-modal__body {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }
}

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

/* line 362, 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 362, app/assets/stylesheets/_education.scss */
  .section-education__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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

/* line 388, app/assets/stylesheets/_education.scss */
.section-education__content {
  position: relative;
  z-index: 1;
  margin-top: -14px;
}

/* line 395, 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 499, 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 514, 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 518, 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 499, app/assets/stylesheets/_education.scss */
  .section-education .school-card {
    transform: translateX(-100px);
  }
  /* line 525, 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 529, 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 534, 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 544, 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);
  position: relative;
  z-index: 2;
}

/* line 558, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 564, 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 580, 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 591, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo, .section-education .school-card__header .school-name {
  position: relative;
  z-index: 2;
}

/* line 595, 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 602, 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 620, app/assets/stylesheets/_education.scss */
.section-education .school-card__header .logo-preview:hover {
  opacity: 1;
  visibility: visible;
}

/* line 625, 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 643, app/assets/stylesheets/_education.scss */
.section-education .school-card__body {
  padding: 0;
}

/* line 647, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__description,
.section-education .school-card__body .education-item__diploma,
.section-education .school-card__body .education-item__gallery .gallery-item {
  display: none;
}

/* line 653, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__actions {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 47, 102, 0.06);
  display: flex;
  justify-content: center;
}

/* line 661, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b3f8a 0%, #1f2d63 100%);
  color: #eeedec;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(43, 63, 138, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  width: 100%;
  justify-content: center;
}

/* line 681, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button::after {
  content: '›';
  font-size: 0.9em;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

/* line 688, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button:hover {
  background: linear-gradient(135deg, #2f4496 0%, #253677 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(43, 63, 138, 0.45);
}

/* line 693, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button:hover::after {
  transform: translateX(3px);
}

/* line 698, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 703, app/assets/stylesheets/_education.scss */
.section-education .school-card__body .education-item__more-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 63, 138, 0.35);
}

/* line 711, 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 716, app/assets/stylesheets/_education.scss */
.section-education .education-item:last-child {
  border-bottom: none;
}

/* line 720, app/assets/stylesheets/_education.scss */
.section-education .education-item:hover {
  background-color: rgba(32, 47, 102, 0.01);
}

/* line 725, 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 725, app/assets/stylesheets/_education.scss */
  .section-education .education-item::before {
    content: none;
  }
}

/* line 744, app/assets/stylesheets/_education.scss */
.section-education .education-item__header {
  margin-bottom: 1rem;
}

/* line 747, 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 757, 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 769, 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 777, app/assets/stylesheets/_education.scss */
.section-education .education-item__meta .dates, .section-education .education-item__meta .result {
  display: flex;
  align-items: center;
}

/* line 781, 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 788, app/assets/stylesheets/_education.scss */
.section-education .education-item__description {
  color: rgba(32, 47, 102, 0.9);
  margin-bottom: 1rem;
}

/* line 792, app/assets/stylesheets/_education.scss */
.section-education .education-item__description p {
  margin-bottom: 0.5rem;
}

/* line 795, app/assets/stylesheets/_education.scss */
.section-education .education-item__description p:last-child {
  margin-bottom: 0;
}

/* line 800, app/assets/stylesheets/_education.scss */
.section-education .education-item__description ul {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/* line 804, app/assets/stylesheets/_education.scss */
.section-education .education-item__description ul li {
  margin-bottom: 0.25rem;
}

/* line 810, app/assets/stylesheets/_education.scss */
.section-education .education-item__activities {
  margin-top: 1rem;
}

/* line 813, 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 820, 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 829, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma {
  margin-top: 1rem;
}

/* line 832, 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 837, 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 841, 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 848, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id span {
  color: #ea1d21;
}

/* line 852, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .diploma-id i {
  color: #ea1d21;
}

/* line 857, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .certificate-link {
  color: #2b3f8a;
  text-decoration: none;
  font-weight: 600;
}

/* line 862, app/assets/stylesheets/_education.scss */
.section-education .education-item__diploma .certificate-link:hover {
  text-decoration: underline;
}

/* line 868, 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 874, 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 883, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item::before {
  content: '';
  display: block;
  padding-top: 70.7%;
}

/* line 889, 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 901, 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 914, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item .image-preview-overlay i {
  color: white;
  font-size: 1.5rem;
}

/* line 921, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item:hover .a4-thumbnail {
  transform: scale(1.02);
}

/* line 925, app/assets/stylesheets/_education.scss */
.section-education .education-item__gallery .gallery-item:hover .image-preview-overlay {
  opacity: 1;
}

/* line 933, 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 943, app/assets/stylesheets/_education.scss */
.section-education .education-item .image-modal.show {
  display: block;
  animation: fadeIn 0.3s;
}

/* line 948, 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 961, 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 970, 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 987, 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 1009, app/assets/stylesheets/_education.scss */
  .school-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 1014, app/assets/stylesheets/_education.scss */
  .school-card__header {
    flex-direction: column;
    text-align: center;
  }
  /* line 1018, app/assets/stylesheets/_education.scss */
  .school-card__header .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  /* line 1026, app/assets/stylesheets/_education.scss */
  .section-education .school-card .education-item__more-button.js-education-more:hover {
    transform: none !important;
    box-shadow: 0 6px 16px rgba(43, 63, 138, 0.35) !important;
  }
  /* line 1030, app/assets/stylesheets/_education.scss */
  .section-education .school-card .education-item__more-button.js-education-more:hover::after {
    transform: translateX(0) !important;
  }
}

@media (min-width: 769px) {
  /* line 1040, app/assets/stylesheets/_education.scss */
  .section-education .school-card__header .logo {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  /* line 1044, app/assets/stylesheets/_education.scss */
  .section-education .school-card__header .logo:hover {
    transform: scale(1.05);
  }
  /* line 1049, app/assets/stylesheets/_education.scss */
  .section-education .school-card__header .logo, .section-education .school-card__header .school-name {
    cursor: pointer;
  }
  /* line 1052, 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 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 !important;
}

/* 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: 0 !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 73, app/assets/stylesheets/_public_skills.scss */
.section-skills__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: calc(1.5rem + 10px);
}

/* line 82, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .section-skills__header {
  margin-top: 4rem;
}

/* line 89, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible {
  margin: 0;
}

/* line 94, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible:not(.skills-group--collapsed) {
  margin: 1rem 0;
}

/* line 99, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed .skills-group__header {
  border-radius: 0 !important;
}

/* line 104, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed:first-of-type .skills-group__header {
  border-radius: 12px 12px 0 0 !important;
}

/* line 111, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed:not(.skills-group--appearing):not(.animate-out):not(:has(+ .skills-group.skills-group--collapsible))
.skills-group__header {
  border-radius: 0 0 12px 12px !important;
}

/* line 119, app/assets/stylesheets/_public_skills.scss */
.section-skills__content:not(:has(> .skills-group.skills-group--collapsible:not(.skills-group--collapsed))) > .skills-group.skills-group--collapsible.skills-group--collapsed:last-of-type
.skills-group__header {
  border-radius: 12px !important;
}

/* line 126, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed:first-of-type:last-of-type .skills-group__header {
  border-radius: 12px !important;
}

/* line 131, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed:has(+ .skills-group.skills-group--collapsible:not(.skills-group--collapsed)) .skills-group__header {
  border-radius: 0 0 12px 12px !important;
}

/* line 137, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed:first-of-type:has(+ .skills-group.skills-group--collapsible:not(.skills-group--collapsed)) .skills-group__header {
  border-radius: 12px !important;
}

/* line 144, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible:not(.skills-group--collapsed)
+ .skills-group.skills-group--collapsible.skills-group--collapsed:has(~ .skills-group.skills-group--collapsible)
.skills-group__header {
  border-radius: 12px 12px 0 0 !important;
}

/* line 153, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible:not(.skills-group--collapsed)
+ .skills-group.skills-group--collapsible.skills-group--collapsed:has(+ .skills-group.skills-group--collapsible:not(.skills-group--collapsed))
.skills-group__header {
  border-radius: 12px !important;
}

/* line 163, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible:not(.skills-group--collapsed)
+ .skills-group.skills-group--collapsible.skills-group--collapsed:not(:has(~ .skills-group.skills-group--collapsible))
.skills-group__header {
  border-radius: 12px !important;
}

/* line 172, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed.skills-group--visible-tail:not(:last-of-type)
.skills-group__header {
  border-radius: 0 0 12px 12px !important;
}

/* line 179, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--collapsed.skills-group--visible-tail:first-of-type
.skills-group__header {
  border-radius: 12px !important;
}

/* line 187, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible:not(.skills-group--collapsed)
+ .skills-group.skills-group--collapsible.skills-group--collapsed.skills-group--visible-tail
.skills-group__header {
  border-radius: 12px !important;
}

/* line 195, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.skills-group--appearing
.skills-group__header {
  border-radius: 12px !important;
}

/* line 202, app/assets/stylesheets/_public_skills.scss */
.section-skills__content > .skills-group.skills-group--collapsible.animate-out
.skills-group__header {
  border-radius: 12px !important;
}

/* line 209, app/assets/stylesheets/_public_skills.scss */
.skills-group {
  background-color: transparent;
  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;
}

/* line 219, 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 224, app/assets/stylesheets/_public_skills.scss */
.skills-group.animate-out {
  animation: zoomOut 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

/* line 228, app/assets/stylesheets/_public_skills.scss */
.skills-group:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 234, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--raised {
  z-index: 50;
}

/* line 239, 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: 0;
}

/* line 248, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group.animate-in {
  animation: fadeIn 1.2s ease forwards;
}

/* line 252, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group.animate-out {
  animation: fadeOut 0.8s ease forwards;
}

/* line 256, app/assets/stylesheets/_public_skills.scss */
.skills-group.soft-skills-group:hover {
  transform: none;
  box-shadow: none;
}

/* line 262, 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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  border: none;
  background-clip: padding-box;
  transition: border-radius 0.25s ease-in-out;
}

/* line 276, app/assets/stylesheets/_public_skills.scss */
.skills-group__header::after {
  content: '▾';
  font-size: 0.9rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

/* line 283, app/assets/stylesheets/_public_skills.scss */
.skills-group__header h3 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
  flex: 1;
  text-align: left;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* line 292, app/assets/stylesheets/_public_skills.scss */
.skills-group__header__description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* line 300, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsed .skills-group__header::after {
  transform: rotate(-90deg);
}

/* line 304, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsed .skills-group__header h3 {
  text-align: center;
  transform: translateX(-1rem);
}

/* line 310, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsed .skills-group__header:hover h3 {
  transform: translateX(-1rem) scale(1.03);
}

/* line 314, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsed .skills-group__items {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

/* line 325, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsible.skills-group--collapsed.animate-in .skills-group__header h3 {
  transform: translateX(13px);
}

/* line 329, app/assets/stylesheets/_public_skills.scss */
.skills-group.skills-group--collapsible.skills-group--collapsed.animate-in .skills-group__header:hover h3 {
  transform: translateX(13px) scale(1.03);
}

/* line 334, app/assets/stylesheets/_public_skills.scss */
.skills-group__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(238, 237, 236, 0.35);
  border-radius: 0 0 12px 12px;
  position: relative;
  overflow: visible;
  min-height: 240px;
  max-height: 2000px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
}

/* line 351, app/assets/stylesheets/_public_skills.scss */
.skill-item {
  position: relative;
  width: 100%;
  min-height: 180px;
  background-color: white;
  border-radius: 15px;
  padding: 1rem;
  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: flex-start;
  overflow: hidden;
  will-change: transform, box-shadow;
}

/* line 370, app/assets/stylesheets/_public_skills.scss */
.skill-item::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 110px;
  height: 110px;
  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.2);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

/* line 389, 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 402, app/assets/stylesheets/_public_skills.scss */
.skill-item.active::before {
  opacity: 0;
  transform: translateY(50px) rotate(-20deg) scale(0.8);
}

/* line 408, 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 425, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* line 434, 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 442, 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 449, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-logo--placeholder span {
  font-size: 2rem;
  font-weight: 700;
  color: #2b3f8a;
}

/* line 457, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-name {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #2b3f8a;
  font-weight: 600;
  text-align: center;
}

/* line 465, app/assets/stylesheets/_public_skills.scss */
.skill-item .skill-experience {
  margin-top: 0.5rem;
}

/* line 468, 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 479, 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 492, app/assets/stylesheets/_public_skills.scss */
.soft-skills-group {
  margin-top: 0;
}

/* line 497, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripes {
  position: relative;
  width: 150vw;
  max-width: 150vw;
  height: 320px;
  margin: 0 0 2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* line 507, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease-out;
}

/* line 524, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe--top {
  top: -37px;
  transform: rotate(-4deg) scaleX(0);
  transform-origin: 100% 50%;
}

/* line 530, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe--middle {
  top: 120px;
  transform: rotate(2deg) scaleX(0);
  transform-origin: 0% 50%;
}

/* line 536, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe--bottom {
  top: 190px;
  transform: rotate(-3deg) scaleX(0);
  transform-origin: 100% 50%;
}

/* line 542, app/assets/stylesheets/_public_skills.scss */
.soft-skills-group.animate-in .soft-skills-stripe--top {
  opacity: 1;
  transform: rotate(-4deg) scaleX(1);
  transition-delay: 0.1s, 0.1s;
}

/* line 548, app/assets/stylesheets/_public_skills.scss */
.soft-skills-group.animate-in .soft-skills-stripe--middle {
  opacity: 1;
  transform: rotate(2deg) scaleX(1);
  transition-delay: 0.35s, 0.35s;
}

/* line 554, app/assets/stylesheets/_public_skills.scss */
.soft-skills-group.animate-in .soft-skills-stripe--bottom {
  opacity: 1;
  transform: rotate(-3deg) scaleX(1);
  transition-delay: 0.6s, 0.6s;
}

/* line 560, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe__inner {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: softSkillsMarqueeLeft 40s linear infinite;
}

/* line 567, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe--middle .soft-skills-stripe__inner {
  animation-name: softSkillsMarqueeRight;
  animation-duration: 50s;
}

/* line 572, app/assets/stylesheets/_public_skills.scss */
.soft-skills-stripe--bottom .soft-skills-stripe__inner {
  animation-duration: 60s;
}

/* line 576, app/assets/stylesheets/_public_skills.scss */
.soft-skills-item {
  font-weight: 500;
  color: #2b3f8a;
  white-space: nowrap;
  padding: 0 1.5rem;
  font-size: 1.3rem;
}

@keyframes softSkillsMarqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes softSkillsMarqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* line 595, 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 605, app/assets/stylesheets/_public_skills.scss */
.soft-skills-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* line 613, app/assets/stylesheets/_public_skills.scss */
.soft-skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
}

/* line 620, 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 626, app/assets/stylesheets/_public_skills.scss */
.soft-skill-item:hover {
  background-color: rgba(43, 63, 138, 0.2);
  transform: translateY(-2px);
}

/* line 631, app/assets/stylesheets/_public_skills.scss */
.soft-skill-item .soft-skill-name {
  font-weight: 500;
  color: #2b3f8a;
}

/* line 639, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 645, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags a {
  text-decoration: none;
  color: #2b3f8a;
  font-weight: 500;
  transition: 0.2s ease;
}

/* line 651, app/assets/stylesheets/_public_skills.scss */
#soft-skills-tags a:hover {
  color: #192450;
  text-decoration: none;
}

@media (max-width: 768px) {
  /* line 660, app/assets/stylesheets/_public_skills.scss */
  .skills-group__items {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  /* line 664, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-container {
    gap: 0.5rem;
  }
  /* line 670, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-item.setup-done {
    cursor: default;
    transition: none;
  }
  /* line 675, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-item.setup-done:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: none;
  }
  /* line 680, app/assets/stylesheets/_public_skills.scss */
  .skills-group.skills-group--collapsed .skills-group__header:hover h3 {
    transform: translateX(-1rem);
  }
  /* line 684, app/assets/stylesheets/_public_skills.scss */
  .skills-group.skills-group--collapsible.skills-group--collapsed.animate-in .skills-group__header:hover h3 {
    transform: translateX(13px);
  }
  /* line 688, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe {
    height: 60px;
  }
  /* line 692, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe--top {
    top: 30px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  /* line 699, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe {
    height: 70px;
  }
  /* line 703, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe--top {
    top: 10px;
  }
  /* line 707, app/assets/stylesheets/_public_skills.scss */
  .skills-group.soft-skills-group.animate-in {
    margin-top: -30px;
  }
}

@media (max-width: 576px) {
  /* line 713, app/assets/stylesheets/_public_skills.scss */
  .skills-group__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 577px) and (max-width: 786px) {
  /* line 721, app/assets/stylesheets/_public_skills.scss */
  .skills-group__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 601px) and (max-width: 992px) {
  /* line 727, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content h3 {
    font-size: 20px;
  }
  /* line 731, app/assets/stylesheets/_public_skills.scss */
  .skills-group.soft-skills-group.animate-in {
    margin-top: -40px;
  }
}

@media (min-width: 501px) and (max-width: 600px) {
  /* line 737, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content h3 {
    font-size: 18px;
  }
  /* line 741, app/assets/stylesheets/_public_skills.scss */
  .skills-group.soft-skills-group.animate-in {
    margin-top: -50px;
  }
}

@media (min-width: 471px) and (max-width: 500px) {
  /* line 747, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content h3 {
    font-size: 16px;
  }
  /* line 751, app/assets/stylesheets/_public_skills.scss */
  .skills-group.soft-skills-group.animate-in {
    margin-top: -40px;
  }
}

@media (min-width: 320px) and (max-width: 470px) {
  /* line 757, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content h3 {
    font-size: 14px;
  }
  /* line 761, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-experience__text {
    font-size: 11px;
  }
  /* line 765, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-item.setup-done {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 770, app/assets/stylesheets/_public_skills.scss */
  .skills-group.soft-skills-group.animate-in {
    margin-top: -35px;
  }
  /* line 774, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe {
    height: 50px;
  }
  /* line 778, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe__inner {
    gap: 0;
  }
  /* line 782, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-item {
    font-size: 1rem;
  }
  /* line 786, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripes {
    height: 180px;
  }
  /* line 790, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe--middle {
    top: 100px;
  }
  /* line 794, app/assets/stylesheets/_public_skills.scss */
  .soft-skills-stripe--bottom {
    top: 140px;
  }
}

@media screen and (width: 320px) and (height: 568px) and (orientation: portrait), screen and (width: 360px) and (height: 780px) and (orientation: portrait), screen and (width: 360px) and (height: 800px) and (orientation: portrait), screen and (width: 375px) and (height: 667px) and (orientation: portrait), screen and (width: 375px) and (height: 812px) and (orientation: portrait), screen and (width: 380px) and (height: 820px) and (orientation: portrait), screen and (width: 385px) and (height: 854px) and (orientation: portrait), screen and (width: 390px) and (height: 844px) and (orientation: portrait), screen and (width: 393px) and (height: 852px) and (orientation: portrait), screen and (width: 393px) and (height: 873px) and (orientation: portrait), screen and (width: 402px) and (height: 874px) and (orientation: portrait), screen and (width: 412px) and (height: 892px) and (orientation: portrait), screen and (width: 414px) and (height: 896px) and (orientation: portrait), screen and (width: 420px) and (height: 912px) and (orientation: portrait), screen and (width: 428px) and (height: 926px) and (orientation: portrait), screen and (width: 430px) and (height: 932px) and (orientation: portrait), screen and (width: 440px) and (height: 956px) and (orientation: portrait) {
  /* line 821, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-item.setup-done,
.section-skills__content .skill-item.setup-done * {
    pointer-events: none !important;
    cursor: default !important;
  }
}

@media screen and (width: 568px) and (height: 320px) and (orientation: landscape), screen and (width: 780px) and (height: 360px) and (orientation: landscape), screen and (width: 800px) and (height: 360px) and (orientation: landscape), screen and (width: 667px) and (height: 375px) and (orientation: landscape), screen and (width: 812px) and (height: 375px) and (orientation: landscape), screen and (width: 820px) and (height: 380px) and (orientation: landscape), screen and (width: 854px) and (height: 385px) and (orientation: landscape), screen and (width: 844px) and (height: 390px) and (orientation: landscape), screen and (width: 852px) and (height: 393px) and (orientation: landscape), screen and (width: 873px) and (height: 393px) and (orientation: landscape), screen and (width: 874px) and (height: 402px) and (orientation: landscape), screen and (width: 892px) and (height: 412px) and (orientation: landscape), screen and (width: 915px) and (height: 412px) and (orientation: landscape), screen and (width: 896px) and (height: 414px) and (orientation: landscape), screen and (width: 912px) and (height: 420px) and (orientation: landscape), screen and (width: 926px) and (height: 428px) and (orientation: landscape), screen and (width: 932px) and (height: 430px) and (orientation: landscape), screen and (width: 956px) and (height: 440px) and (orientation: landscape) {
  /* line 848, app/assets/stylesheets/_public_skills.scss */
  .section-skills__content .skill-item.setup-done,
.section-skills__content .skill-item.setup-done * {
    pointer-events: none !important;
    cursor: default !important;
  }
}

/* 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 .skill-drag-handle {
  cursor: grab;
}

/* line 39, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions {
  display: none;
  position: relative;
}

/* line 43, 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 56, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__button:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 60, 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 69, 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 81, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content.show {
  display: block;
}

/* line 85, 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 93, 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 99, 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 103, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-view:hover {
  color: #2b3f8a;
}

/* line 107, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-edit:hover {
  color: #2b3f8a;
}

/* line 111, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .kebab-actions .kebab-menu__content .menu-item.btn-delete:hover {
  color: #ea1d21;
}

/* line 118, 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 129, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon i {
  color: #2b3f8a;
  font-size: 1rem;
}

/* line 134, 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 152, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon:hover {
  background-color: rgba(43, 63, 138, 0.1);
}

/* line 155, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* line 161, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon.btn-view:hover i {
  color: #2b3f8a;
}

/* line 165, app/assets/stylesheets/_skill_cards.scss */
.skill-card__actions .action-icon.btn-edit:hover i {
  color: #2b3f8a;
}

/* line 169, 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 176, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: none;
  }
  /* line 180, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: block;
  }
}

@media (max-width: 768px) and (min-width: 480px) {
  /* line 187, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: flex;
  }
  /* line 191, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: none;
  }
}

@media (max-width: 479px) {
  /* line 198, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .normal-actions {
    display: none;
  }
  /* line 202, app/assets/stylesheets/_skill_cards.scss */
  .skill-card__actions .kebab-actions {
    display: block;
  }
}

/* line 209, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 214, 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 220, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 226, 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 239, app/assets/stylesheets/_skill_cards.scss */
.skill-card__body .skill-card__header .skill-info {
  flex: 1;
}

/* line 244, 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 251, 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 260, 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;
}

/* line 271, app/assets/stylesheets/_skill_cards.scss */
.skill-card--dragging {
  opacity: 0.85;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  /* line 278, 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 332, app/assets/stylesheets/_section_transition.scss */
  .code-transition,
.reveal-transition {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* 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 54, app/assets/stylesheets/_project_admin.scss */
.projects-list .projects-sections {
  display: flex;
  flex-direction: column;
  border-color: #2a3f8a !important;
}

/* line 60, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-card--projects {
  margin-top: 0 !important;
  padding: 16px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* line 69, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-card--projects__content {
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

/* line 75, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-card--projects .projects-list__header-bar {
  background-color: #2a3f8a;
  padding: 0;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

/* line 83, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-card--projects .projects-list__subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  padding: 18px 26px;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  animation: none !important;
  transition: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* line 98, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-card--projects + .admin-card--projects {
  margin-top: 16px;
}

/* line 104, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* line 110, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead tr {
  background-color: #2a3f8a;
}

/* line 113, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead tr th {
  color: white;
  font-weight: 600;
  padding: 7px 12px;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
  white-space: nowrap;
}

/* line 125, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table thead tr th:last-child {
  border-right: none;
}

/* line 133, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr {
  background-color: #f7f8fb;
  transition: background-color 0.2s ease, transform 0.22s ease;
  border-bottom: 1px solid rgba(32, 47, 102, 0.08);
  position: relative;
}

/* line 139, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr:hover {
  background-color: rgba(43, 63, 138, 0.08);
}

/* line 143, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr:last-child {
  border-bottom: none;
}

/* line 147, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.is-dragging {
  position: relative;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(43, 63, 138, 0.2);
  background: inherit;
  z-index: 12;
  border-radius: 4px;
}

/* line 155, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.is-dragging td {
  background-color: inherit;
}

/* line 159, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.is-dragging .move-handle {
  cursor: grabbing;
  background: rgba(43, 63, 138, 0.24);
}

/* line 165, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-development {
  background-color: rgba(47, 62, 133, 0.1);
}

/* line 168, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-development:hover {
  background-color: rgba(47, 62, 133, 0.18);
}

/* line 173, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-retouche {
  background-color: rgba(58, 156, 90, 0.1);
}

/* line 176, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.project-retouche:hover {
  background-color: rgba(58, 156, 90, 0.18);
}

/* line 181, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.drop-target--before::before, .projects-list .admin-table tbody tr.drop-target--after::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 63, 138, 0.8), rgba(43, 63, 138, 0.2));
  pointer-events: none;
}

/* line 193, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.drop-target--before::before {
  top: -2px;
}

/* line 197, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr.drop-target--after::before {
  bottom: -2px;
}

/* line 201, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr td {
  padding: 12px 16px;
  vertical-align: middle;
  color: #202f66;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-right: 1px solid rgba(32, 47, 102, 0.04);
}

/* line 210, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr td:last-child {
  border-right: none;
}

/* line 214, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr td.title-cell {
  text-align: left;
  word-break: break-word;
}

/* line 219, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr td.tech-badges-cell {
  text-align: left;
}

/* line 223, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody tr td.actions-cell {
  white-space: nowrap;
  text-align: center;
}

/* line 232, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody.is-sorting tr {
  transform: none;
  transition: background-color 0.2s ease;
}

/* line 237, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table tbody.is-sorting tr.is-hidden-drag {
  opacity: 0.28;
}

/* line 244, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--position, .projects-list .admin-table th.position-cell,
.projects-list .admin-table td.table-col--position,
.projects-list .admin-table td.position-cell {
  width: 70px;
}

/* line 249, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--image, .projects-list .admin-table th.image-cell,
.projects-list .admin-table td.table-col--image,
.projects-list .admin-table td.image-cell {
  width: 110px;
}

/* line 254, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--title, .projects-list .admin-table th.title-cell,
.projects-list .admin-table td.table-col--title,
.projects-list .admin-table td.title-cell {
  width: 300px;
}

/* line 259, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--technologies, .projects-list .admin-table th.tech-badges-cell,
.projects-list .admin-table td.table-col--technologies,
.projects-list .admin-table td.tech-badges-cell {
  width: 400px;
}

/* line 264, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--actions, .projects-list .admin-table th.actions-cell,
.projects-list .admin-table td.table-col--actions,
.projects-list .admin-table td.actions-cell {
  width: 150px;
}

/* line 269, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table th.table-col--move, .projects-list .admin-table th.move-cell,
.projects-list .admin-table td.table-col--move,
.projects-list .admin-table td.move-cell {
  width: 90px;
}

/* line 275, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell {
  text-align: center;
}

/* line 278, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle {
  border: none;
  background: linear-gradient(145deg, rgba(43, 63, 138, 0.22), rgba(43, 63, 138, 0.38));
  cursor: grab;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(43, 63, 138, 0.18);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.18s ease;
  position: relative;
  overflow: hidden;
}

/* line 293, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

/* line 302, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 24px rgba(43, 63, 138, 0.22);
}

/* line 305, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle:hover::after {
  opacity: 1;
}

/* line 310, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 63, 138, 0.28), 0 10px 24px rgba(43, 63, 138, 0.22);
}

/* line 315, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle.is-active {
  cursor: grabbing;
  transform: scale(0.98);
  filter: brightness(0.95);
  box-shadow: 0 6px 16px rgba(43, 63, 138, 0.24);
}

/* line 322, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle:active {
  transform: scale(0.96);
  box-shadow: 0 6px 14px rgba(43, 63, 138, 0.26);
}

/* line 327, app/assets/stylesheets/_project_admin.scss */
.projects-list .admin-table .move-cell .move-handle__icon {
  width: 18px;
  height: 18px;
  filter: invert(100%) sepia(6%) saturate(264%) hue-rotate(169deg) brightness(118%) contrast(90%);
}

@media (max-width: 768px) {
  /* line 338, app/assets/stylesheets/_project_admin.scss */
  .projects-list .move-cell .move-handle {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(43, 63, 138, 0.25);
  }
  /* line 344, app/assets/stylesheets/_project_admin.scss */
  .projects-list .move-cell .move-handle__icon {
    width: 20px;
    height: 20px;
  }
}

/* line 352, app/assets/stylesheets/_project_admin.scss */
.projects-list .drag-preview {
  background: transparent;
  transform: scale(1.02);
  transition: none;
  padding: 0;
  pointer-events: none;
  max-width: 100vw;
  opacity: 0 !important;
  filter: none !important;
}

/* line 363, app/assets/stylesheets/_project_admin.scss */
.projects-list .drag-preview__table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

/* line 369, app/assets/stylesheets/_project_admin.scss */
.projects-list .drag-preview__row {
  background-color: inherit;
  box-shadow: 0 18px 38px rgba(43, 63, 138, 0.24);
  transform: scale(1.015);
  border-radius: 4px;
  overflow: hidden;
  opacity: 1 !important;
}

/* line 377, app/assets/stylesheets/_project_admin.scss */
.projects-list .drag-preview__row td {
  background-color: inherit !important;
  opacity: 1 !important;
}

/* line 383, app/assets/stylesheets/_project_admin.scss */
.projects-list .drag-preview__row td {
  padding: 12px 16px;
  vertical-align: middle;
}

/* line 389, 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 399, 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 408, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-development {
  background-color: rgba(43, 63, 138, 0.1);
  color: #2b3f8a;
}

/* line 412, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-development .badge-icon {
  font-size: 0.85rem;
  top: -1px;
}

/* line 418, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* line 422, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche .badge-icon {
  font-size: 0.8rem;
}

/* line 425, app/assets/stylesheets/_project_admin.scss */
.projects-list .project-type-badge.type-retouche .badge-icon i {
  position: relative;
  top: -1px;
}

/* line 434, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges-cell {
  vertical-align: middle;
}

/* line 439, app/assets/stylesheets/_project_admin.scss */
.projects-list .tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}

/* line 445, 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 458, 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 465, 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 480, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell {
  width: 100px;
}

/* line 483, 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 491, 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 501, app/assets/stylesheets/_project_admin.scss */
.projects-list .image-cell .placeholder-image i {
  font-size: 24px;
  color: #2b3f8a;
}

/* line 517, 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 525, 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 536, app/assets/stylesheets/_project_admin.scss */
.project-detail__header.header-retouche {
  background-color: rgba(58, 156, 90, 0.15);
}

/* line 540, app/assets/stylesheets/_project_admin.scss */
.project-detail__header h2 {
  color: #202f66;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

/* line 547, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .project-type-badge {
  margin-left: 1rem;
}

/* line 551, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions {
  display: flex;
  gap: 0.5rem;
}

/* line 555, 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 565, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn i {
  margin-right: 6px;
}

/* line 569, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-primary {
  background-color: #2b3f8a;
  color: white;
}

/* line 573, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-primary:hover {
  background-color: #1f2d63;
}

/* line 578, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-danger {
  background-color: #ea1d21;
  color: white;
}

/* line 582, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-danger:hover {
  background-color: #c21215;
}

/* line 587, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-outline {
  border: 1px solid #6c757d;
  color: #1f1f1f;
}

/* line 591, app/assets/stylesheets/_project_admin.scss */
.project-detail__header .header-actions .btn-outline:hover {
  background-color: #6c757d;
  color: white;
}

/* line 600, 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 606, 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 615, app/assets/stylesheets/_project_admin.scss */
.project-detail__content {
  padding: 1.5rem;
}

/* line 619, app/assets/stylesheets/_project_admin.scss */
.project-detail__section {
  margin-bottom: 2rem;
}

/* line 622, app/assets/stylesheets/_project_admin.scss */
.project-detail__section:last-child {
  margin-bottom: 0;
}

/* line 626, 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 635, app/assets/stylesheets/_project_admin.scss */
.project-detail__section p {
  color: #202f66;
  line-height: 1.6;
}

/* line 642, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 647, 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 656, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item:hover {
  background-color: #e9ecef;
  transform: translateX(3px);
}

/* line 661, 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 672, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-icon i {
  font-size: 1.2rem;
  color: #2b3f8a;
}

/* line 678, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content {
  flex-grow: 1;
}

/* line 681, 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 688, 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 693, app/assets/stylesheets/_project_admin.scss */
.project-detail .external-links .external-link-item .external-link-content .external-link-url:hover {
  text-decoration: underline;
}

/* line 702, 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 708, 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 717, app/assets/stylesheets/_project_admin.scss */
.project-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 726, 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 726, app/assets/stylesheets/_project_admin.scss */
  .project-detail__before-after {
    grid-template-columns: 1fr;
  }
}

/* line 736, 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 744, 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 755, 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 765, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item:first-child h4:before {
  background-color: #ea1d21;
}

/* line 769, app/assets/stylesheets/_project_admin.scss */
.project-detail__before-after-item:last-child h4:before {
  background-color: #28a745;
}

/* line 773, 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 785, 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 792, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__header {
  background-color: #f8f9fa;
}

/* line 796, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__description {
  font-size: 0.9rem;
  color: #1f1f1f;
  padding: 1rem !important;
}

/* line 802, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visual-card__images {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* line 808, 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 818, app/assets/stylesheets/_project_admin.scss */
.project-detail .project-visuals-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* line 826, app/assets/stylesheets/_project_admin.scss */
.project-type-selection {
  margin: 2rem 0;
}

/* line 829, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header {
  margin-bottom: 2rem;
  text-align: center;
}

/* line 833, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header h2 {
  color: #202f66;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 840, app/assets/stylesheets/_project_admin.scss */
.project-type-selection__header p {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* line 847, 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 847, app/assets/stylesheets/_project_admin.scss */
  .project-type-selection__cards {
    grid-template-columns: 1fr;
  }
}

/* line 857, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card {
  height: 100%;
  transition: all 0.3s ease;
}

/* line 861, 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 873, 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 886, 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 890, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card:hover .project-type-selection .project-type-card__inner:before {
  opacity: 1;
}

/* line 895, 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 901, 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 913, 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 921, 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 928, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features {
  margin-bottom: 1.5rem;
}

/* line 931, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__features ul {
  list-style: none;
  padding-left: 0;
}

/* line 936, 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 943, 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 951, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__action {
  text-align: center;
}

/* line 954, 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 965, app/assets/stylesheets/_project_admin.scss */
.project-type-selection .project-type-card__action .btn:hover {
  background-color: #1f2d63;
  transform: translateY(-2px);
}

/* line 975, 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 982, 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 990, 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 998, 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 1009, 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 1020, app/assets/stylesheets/_project_admin.scss */
.project-form__header .btn-back:hover {
  color: #202f66;
  background-color: #f1f3f5;
  border-color: #202f66;
}

/* line 1026, app/assets/stylesheets/_project_admin.scss */
.project-form__header .btn-back i {
  font-size: 1rem;
}

/* line 1032, app/assets/stylesheets/_project_admin.scss */
.project-form__content {
  padding: 1.5rem;
}

/* line 1036, app/assets/stylesheets/_project_admin.scss */
.project-form__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

/* line 1041, app/assets/stylesheets/_project_admin.scss */
.project-form__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 1047, app/assets/stylesheets/_project_admin.scss */
.project-form__section h3 {
  color: #202f66;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* line 1055, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group {
  margin-bottom: 1.5rem;
}

/* line 1058, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group:last-child {
  margin-bottom: 0;
}

/* line 1062, 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 1070, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group .form-text {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #6c757d;
}

/* line 1077, 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 1092, 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 1099, app/assets/stylesheets/_project_admin.scss */
.project-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* line 1105, 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 1113, 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 1123, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn i {
  margin-right: 8px;
}

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

/* line 1132, 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 1139, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-secondary {
  background-color: #f8f9fa;
  color: #202f66;
  border: 1px solid #ced4da;
}

/* line 1144, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-secondary:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

/* line 1150, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-danger {
  background-color: white;
  color: #ea1d21;
  border: 1px solid #ea1d21;
}

/* line 1155, app/assets/stylesheets/_project_admin.scss */
.project-form .form-actions .btn-danger:hover {
  background-color: #ea1d21;
  color: white;
}

/* line 1164, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input {
  position: relative;
}

/* line 1167, 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 1177, 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 1188, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-input-label i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* line 1193, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-input-label:hover {
  background-color: #e9ecef;
  border-color: #2b3f8a;
  color: #2b3f8a;
}

/* line 1200, 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 1206, 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 1214, app/assets/stylesheets/_project_admin.scss */
.project-form .custom-file-input .file-preview .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 1220, 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 1235, 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: translateY(-20px);
  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: translateY(0);
}

/* 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);
}

/* line 458, 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 463, 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 467, 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 473, 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 481, 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 491, 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 497, 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 501, 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 507, 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 513, 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.2s ease, visibility 0.2s 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: translateY(-20px);
  transition: transform 0.2s 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: translateY(0);
}

/* 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 19, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__group.mb-4 {
  margin-bottom: 0.5rem !important;
}

/* line 26, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container h3 {
  color: #2b3f8a;
}

/* line 31, 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 38, 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 44, 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 53, 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 64, 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 79, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container .experience-list__item-actions .btn:not(:last-child) {
  margin-right: 1rem;
}

/* line 84, 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 94, 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 100, 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 107, 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 116, app/assets/stylesheets/_project_form_fixes.scss */
.admin-experience-container script {
  display: none;
}

/* line 122, 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 135, 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 141, 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 149, 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 156, 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 162, 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 167, 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 172, 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 189, 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 202, 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 25, 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 30, 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 35, 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 45, 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 52, 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 56, 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 60, 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 64, 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;
}

@media (max-width: 768px) {
  /* line 72, app/assets/stylesheets/_project_detail_modal_development.scss */
  body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal .project-detail[data-project-type="development"] .project-detail__actions .btn.btn-primary:hover,
body .project-detail-modal .project-detail[data-project-type="development"] .project-detail__content .project-detail-modal .project-detail[data-project-type="development"] .project-detail__actions .btn.btn-secondary:hover {
    transform: none !important;
  }
}

/* line 78, 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 86, 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 89, 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 95, 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 105, 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 119, 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 128, 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 135, 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 143, 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 154, 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 165, 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 172, 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 180, 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 181, 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 197, 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 206, 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 213, 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 228, 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 238, 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 238, 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 249, 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 255, 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 262, 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 273, 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 281, 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 287, 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 291, 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 296, 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 304, 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 313, 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 323, 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 330, 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 338, 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 353, 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 371, 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 378, 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 382, 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 389, 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 400, 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 416, 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 427, 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 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 {
  width: 4px !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-track {
  background: transparent !important;
}

/* line 445, 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 449, 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 456, 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 474, 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 487, 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 497, 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 501, 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 507, 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 511, 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 518, 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 528, 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 541, 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 544, 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 551, 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 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 {
  background: rgba(74, 158, 255, 0.1) !important;
  border-bottom: 1px solid #4a9eff !important;
}

/* line 560, 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 564, 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 569, 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 577, 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 582, 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 587, 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 595, 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 599, 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 606, 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 618, 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 622, 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 627, 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 640, 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 646, 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 666, 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 673, 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 677, 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 682, 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 686, 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;
}

@media (max-width: 1025px) {
  /* line 701, 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 710, 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 714, 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 720, 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 725, 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 730, 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 734, 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 741, 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 745, 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 753, 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 760, 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 770, 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 774, 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 778, 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 785, 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 803, 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 813, 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 819, 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 834, 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 837, 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 845, 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 859, 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 863, 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 870, 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 883, 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 890, 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 895, 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 909, 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 923, 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 929, app/assets/stylesheets/_project_detail_modal_development.scss */
  .project-detail-modal:has(.project-detail[data-project-type="development"]) .carousel-slide {
    padding: 0 !important;
  }
  /* line 936, 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 949, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
  transform: translate(-50%, -50%) translateY(-40px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 956, app/assets/stylesheets/_project_detail_modal_development.scss */
.project-detail-modal.active:has(.project-detail[data-project-type="development"]) .project-detail-modal__content {
  transform: translate(-50%, -50%) translateY(0);
}

@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 25, 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 30, 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 35, 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 43, 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 51, 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 54, 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 60, 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;
  }
}

/* line 73, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
  transform: translate(-50%, -50%) translateY(-40px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 78, app/assets/stylesheets/_project_detail_modal_retouche.scss */
.project-detail-modal.active:has(.project-detail[data-project-type="retouche"]) .project-detail-modal__content {
  transform: translate(-50%, -50%) translateY(0);
}

@media (max-width: 768px) {
  /* line 84, app/assets/stylesheets/_project_detail_modal_retouche.scss */
  .project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__actions .btn.btn-primary:hover,
.project-detail-modal .project-detail[data-project-type="retouche"] .project-detail__actions .btn.btn-secondary:hover {
    transform: none !important;
  }
}

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

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

/* line 104, 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 119, 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 128, 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 135, 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 143, 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 154, 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 164, 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 172, 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 173, 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 189, 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 198, 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 205, 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 220, 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 231, 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 231, 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 231, 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 247, 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 247, 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 247, 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 247, 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 272, 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 285, 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 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-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 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-container {
    height: 65vh !important;
  }
}

/* line 311, 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 320, 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 330, 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 341, 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 360, 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 366, 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 370, 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 375, 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 383, 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 392, 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 411, 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 412, 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 418, 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 423, 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 432, 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 440, 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 458, 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 458, 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 458, 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 458, 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 485, 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 495, 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 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 .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 514, 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 527, 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 532, 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 537, 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 543, 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 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 .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 569, 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 581, 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 582, 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 586, 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 590, 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 594, 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 599, 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 611, 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 624, 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 630, 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 639, 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 643, 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 647, 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 651, 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 664, 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 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 .slider-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* line 680, 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 686, 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 692, 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 698, 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 704, 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 710, 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 715, 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 722, 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 733, 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 743, 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 758, 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 762, 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 778, 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 799, 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 806, 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 813, 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 895, 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 908, 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 917, 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 927, 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 965, 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 981, 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 996, 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 1007, 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 1017, 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 1021, 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 1025, 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 1029, 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 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 {
  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 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 {
  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 1056, 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 1060, 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 1066, 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 1070, 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 1080, 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 1084, 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 1089, 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 1102, 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 1108, 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 1128, 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 1135, 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 1139, 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 1144, 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 1148, 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 1156, 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 1167, 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 1173, 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 1177, 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 1183, 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 1190, 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 1195, 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 1200, 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 1204, 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 1208, 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 1212, 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 1223, 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 1231, 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 1235, 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 1247, 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 1256, 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 1260, 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 1265, 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 1274, 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 1282, 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 1286, 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 1294, 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 1301, 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 1311, 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 1315, 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 1327, 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 1334, 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 1340, 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 1351, 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 1355, 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 1359, 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 1365, 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 1376, 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 1382, 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 1396, 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 1410, 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 1419, 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 1429, 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 1434, 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 1448, 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 1455, 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 1460, 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 1474, 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 1489, 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 1492, 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 1500, 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 1508, 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 1518, 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 1521, 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 1530, 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 1536, 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 1544, 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 1552, 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 1566, 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 1632, 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 1641, 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 1649, 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 1656, 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 1695, 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 1700, 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 1713, 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;
  transform: translateY(-20px);
  transition: transform 0.4s ease-in-out;
}

/* line 55, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal.active .simple-image-modal__content {
  transform: translateY(0);
}

/* line 60, 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 73, 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 90, 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 108, 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 116, 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 129, 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 134, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-trigger.active {
  opacity: 0.5;
  pointer-events: none;
}

/* line 141, 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 159, 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 167, 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 176, 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 191, 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 200, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close::before {
  transform: rotate(45deg);
}

/* line 204, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .description-close::after {
  transform: rotate(-45deg);
}

/* line 208, 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 215, 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 231, app/assets/stylesheets/_simple_image_modal.scss */
.simple-image-modal__content .description-container .project-visual-card__description::-webkit-scrollbar {
  width: 6px;
}

/* line 235, 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 240, 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 244, 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 249, 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 256, 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 260, 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 287, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .image-container {
    max-width: 95vw;
    max-height: 70vh;
  }
  /* line 292, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-container {
    width: 90vw;
    bottom: 80px;
    padding: 20px;
  }
  /* line 297, 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 303, app/assets/stylesheets/_simple_image_modal.scss */
  .simple-image-modal__content .description-trigger {
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  /* line 308, 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;
    min-height: auto;
  }
}

/* line 51, 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 64, app/assets/stylesheets/_legal.scss */
.legal-content > p {
  color: #2f2f2f;
  margin: 0 0 20px;
  opacity: 1;
}

/* line 71, 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 79, app/assets/stylesheets/_legal.scss */
.legal-content li {
  color: #2f2f2f;
  margin-bottom: 6px;
}

/* line 84, app/assets/stylesheets/_legal.scss */
.legal-content li strong {
  color: #333;
}

/* line 89, app/assets/stylesheets/_legal.scss */
.legal-content p,
.legal-content li {
  line-height: 1.8;
}

/* line 95, app/assets/stylesheets/_legal.scss */
.legal-content p,
.legal-content li,
.legal-content ul,
.legal-content ol {
  text-shadow: none;
  opacity: 1;
}

/* line 103, app/assets/stylesheets/_legal.scss */
.legal-content em {
  color: #2f2f2f;
}

/* line 108, app/assets/stylesheets/_legal.scss */
.legal-content li::marker {
  color: #2b3f8a;
}

/* line 113, 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 120, app/assets/stylesheets/_legal.scss */
.legal-content a:hover {
  color: #59d8ee;
  border-bottom-color: #59d8ee;
}

@media (max-width: 768px) {
  /* line 51, app/assets/stylesheets/_legal.scss */
  .legal-content {
    top: 0 !important;
    padding: 30px 20px;
    margin: 0 15px;
  }
}

/* line 132, 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 132, app/assets/stylesheets/_legal.scss */
  .legal-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* line 145, 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 159, 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 159, app/assets/stylesheets/_legal.scss */
  .legal-content h2.page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* line 172, 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 185, app/assets/stylesheets/_legal.scss */
.legal-content section {
  margin-bottom: 40px;
}

/* line 188, app/assets/stylesheets/_legal.scss */
.legal-content section:last-child {
  margin-bottom: 0;
}

/* line 192, 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 192, app/assets/stylesheets/_legal.scss */
  .legal-content section h2 {
    font-size: 1.25rem;
  }
}

/* line 205, 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 205, app/assets/stylesheets/_legal.scss */
  .legal-content section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* line 216, app/assets/stylesheets/_legal.scss */
.legal-content section p strong {
  color: #333;
  font-weight: 600;
}

/* line 221, app/assets/stylesheets/_legal.scss */
.legal-content section p br {
  margin-bottom: 8px;
}

/* line 226, 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 233, 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 257, 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 262, 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 262, 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 262, 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 262, 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 262, 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 262, 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 270, app/assets/stylesheets/_legal.scss */
.legal-back-button {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1002;
}

@media (max-width: 768px) {
  /* line 270, 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 1, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated {
  --h2-start-x: 0px;
  --h2-start-y: 24px;
  --h2-start-scale: 0.94;
  --h2-start-rotate: 0deg;
  --h2-start-blur: 6px;
  --h2-duration: 0.9s;
  --h2-delay: 0s;
  --h2-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --h2-final-transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 0;
  transform: translate3d(var(--h2-start-x), var(--h2-start-y), 0) scale(var(--h2-start-scale)) rotate(var(--h2-start-rotate));
  filter: blur(var(--h2-start-blur));
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  will-change: transform, opacity, filter;
  transform-origin: center;
  backface-visibility: hidden;
  animation: none;
}

/* line 23, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated.heading-animated--visible {
  animation: headingCustomFade var(--h2-duration) var(--h2-timing) forwards;
  animation-delay: var(--h2-delay);
}

/* line 29, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated.heading-animated--hiding {
  animation: headingCustomFade var(--h2-duration) var(--h2-timing) reverse forwards;
  animation-delay: 0s;
}

/* line 35, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated-subtitle {
  --h2-start-x: 0px;
  --h2-start-y: 18px;
  --h2-start-scale: 0.98;
  --h2-start-rotate: 0deg;
  --h2-start-blur: 0px;
  --h2-duration: 0.8s;
  --h2-delay: 0.12s;
  --h2-timing: cubic-bezier(0.17, 0.67, 0.4, 1);
  --h2-final-transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(var(--h2-start-x), var(--h2-start-y), 0) scale(var(--h2-start-scale)) rotate(var(--h2-start-rotate));
  filter: blur(var(--h2-start-blur));
  will-change: transform, opacity, filter;
  transform-origin: center;
  backface-visibility: hidden;
  animation: none;
}

/* line 57, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated-subtitle.heading-animated-subtitle--visible {
  opacity: 0;
  visibility: visible;
  animation: headingCustomFade var(--h2-duration) var(--h2-timing) forwards;
  animation-delay: var(--h2-delay);
}

/* line 65, app/assets/stylesheets/_heading_animations.scss */
body:not(.admin-body) .heading-animated-subtitle.heading-animated-subtitle--hiding {
  animation: headingCustomFade var(--h2-duration) var(--h2-timing) reverse forwards;
  animation-delay: 0s;
}

/* line 71, app/assets/stylesheets/_heading_animations.scss */
#projects-section .section-projects__subtitle.heading-animated-subtitle {
  --h2-final-transform: rotate(10deg)
    translateY(clamp(-2px, 0.5vw, 10px))
    translateX(clamp(15px, 4vw, 30px));
}

@keyframes headingCustomFade {
  0% {
    opacity: 0;
    transform: translate3d(var(--h2-start-x), var(--h2-start-y), 0) scale(var(--h2-start-scale)) rotate(var(--h2-start-rotate));
    filter: blur(var(--h2-start-blur));
  }
  60% {
    filter: blur(calc(var(--h2-start-blur) * 0.3));
  }
  100% {
    opacity: 1;
    transform: var(--h2-final-transform);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 97, app/assets/stylesheets/_heading_animations.scss */
  body:not(.admin-body) .heading-animated {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
  /* line 104, app/assets/stylesheets/_heading_animations.scss */
  body:not(.admin-body) .heading-animated-subtitle {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* line 90, 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 98, app/assets/stylesheets/application.scss */
.experience-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* line 103, 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 111, app/assets/stylesheets/application.scss */
.experience-card__logo img {
  max-width: 100%;
  max-height: 80px;
}

/* line 117, app/assets/stylesheets/application.scss */
.experience-card__content {
  flex: 1;
  padding: 1.5rem;
}

/* line 121, app/assets/stylesheets/application.scss */
.experience-card__content .title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* line 127, app/assets/stylesheets/application.scss */
.experience-card__content .company {
  font-weight: 500;
  color: #2b3f8a;
  margin-bottom: 0.25rem;
}

/* line 133, 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 141, 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 147, 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 153, app/assets/stylesheets/application.scss */
.experience-card__content .description {
  color: rgba(32, 47, 102, 0.9);
}

/* line 160, 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 174, app/assets/stylesheets/application.scss */
.modal.active {
  display: flex;
  opacity: 1;
}

/* line 179, 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 190, app/assets/stylesheets/application.scss */
.modal.active .modal__content {
  transform: translateY(0);
}

/* line 195, 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 209, app/assets/stylesheets/application.scss */
.modal__close:hover {
  background-color: #eee;
}

/* line 213, app/assets/stylesheets/application.scss */
.modal__close::before, .modal__close::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #202f66;
}

/* line 222, app/assets/stylesheets/application.scss */
.modal__close::before {
  transform: rotate(45deg);
}

/* line 226, app/assets/stylesheets/application.scss */
.modal__close::after {
  transform: rotate(-45deg);
}

/* line 231, app/assets/stylesheets/application.scss */
.modal__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* line 235, app/assets/stylesheets/application.scss */
.modal__header h3 {
  margin-bottom: 0.25rem;
}

/* line 239, app/assets/stylesheets/application.scss */
.modal__header p {
  color: rgba(32, 47, 102, 0.7);
}

/* line 245, app/assets/stylesheets/application.scss */
.modal__form .form-group {
  margin-bottom: 1rem;
}

/* line 248, app/assets/stylesheets/application.scss */
.modal__form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* line 254, 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 264, 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 271, app/assets/stylesheets/application.scss */
.modal__form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* line 277, app/assets/stylesheets/application.scss */
.modal__form .btn-submit {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  /* line 286, app/assets/stylesheets/application.scss */
  .section-home__content {
    flex-direction: column-reverse;
  }
  /* line 289, app/assets/stylesheets/application.scss */
  .section-home__content .text-content {
    padding-right: 0;
    margin-top: 2rem;
    text-align: center;
  }
  /* line 296, app/assets/stylesheets/application.scss */
  .experience-card {
    flex-direction: column;
  }
  /* line 299, app/assets/stylesheets/application.scss */
  .experience-card__logo {
    flex: 0 0 auto;
    padding: 1rem 1rem 0;
  }
}

@media (max-width: 768px) {
  /* line 307, app/assets/stylesheets/application.scss */
  h1 {
    font-size: 2rem;
  }
  /* line 311, app/assets/stylesheets/application.scss */
  h2 {
    font-size: 1.75rem;
  }
  /* line 315, app/assets/stylesheets/application.scss */
  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  /* line 321, app/assets/stylesheets/application.scss */
  .container {
    padding: 0 0.5rem;
  }
  /* line 325, app/assets/stylesheets/application.scss */
  .experience-card__content .meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/*# sourceMappingURL=application.css-336e901d2e12c8fe334a20b0c00b4377bd5b253a640c186b3d62dbb24aecdd7c.map */
