/* ============================================
   css/apropos.css - Styles spécifiques à À propos
   ============================================ */

.level-1-shadow {
    box-shadow: 0 12px 32px -8px rgba(19, 45, 92, 0.08);
}

.organic-blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.px-gutter {
    padding-left: 9px;
    padding-right: 24px;
    padding-top: 26px;
}