p:has(> a[href*="instagram.com"]) {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

a[href*="instagram.com"] {
    display: inline-block;
    color: #111111 !important; /* Texte noir texturé */
    text-decoration: none !important;
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

/* Création de la ligne de soulignement personnalisée */
a[href*="instagram.com"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Épaisseur de la ligne */
    background-color: #bc1888; /* Couleur Instagram */
    transform: scaleX(0.3); /* La ligne est petite par défaut */
    transform-origin: bottom left;
    transition: transform 0.3s ease;
}

/* Effet au survol */
a[href*="instagram.com"]:hover {
    color: #bc1888 !important;
}

a[href*="instagram.com"]:hover::after {
    transform: scaleX(1); /* La ligne se déploie sur toute la largeur */
}