/* Стиль для розділювача з іконкою танцю */
hr.wp-block-separator.is-style-dance-pointe {
    background: none !important; 
    border: none;
    text-align: center;
    height: auto;
    overflow: visible;
    position: relative;
}
/* Малюємо лінії по боках */
hr.wp-block-separator.is-style-dance-pointe::before,
hr.wp-block-separator.is-style-dance-pointe::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #e91e63, #d4af37); 
}
hr.wp-block-separator.is-style-dance-pointe::before { left: 0; }
hr.wp-block-separator.is-style-dance-pointe::after { right: 0; }
/* Вставляємо іконку всередину */
hr.wp-block-separator.is-style-dance-pointe::before {
    background: none; 
}
hr.wp-block-separator.is-style-dance-pointe {
    text-align: center;
    line-height: 0;
}
hr.wp-block-separator.is-style-dance-pointe::before {
    all: unset; 
}
/* Коректний варіант: через додатковий елемент в середині */
.is-style-dance-pointe {
    background: transparent !important;
    text-align: center;
}
.is-style-dance-pointe::after {
    display: inline-block;
    content: "✧ ༺ ♩ ♪ ♫ ♬ ༻ ✧"; 
    font-size: 2rem;
    background: #fff; 
    padding: 0 20px;
    letter-spacing: 15px;
}