/* Block Style: Button mit Pfeil-Icon */
/* Pill-Button mit weißem Kreis und Pfeil, Hover-Animation */

.wp-block-button.is-style-icon-arrow .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--wp--preset--color--accent-dark, #e57373);
    color: #fff;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid var(--wp--preset--color--accent-dark, #e57373);
    box-shadow: 0 10px 15px -3px rgba(229, 115, 115, 0.2), 0 4px 6px -4px rgba(229, 115, 115, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.wp-block-button.is-style-icon-arrow .wp-block-button__link:hover {
    background-color: rgba(229, 115, 115, 0.9);
    box-shadow: 0 10px 15px -3px rgba(229, 115, 115, 0.3), 0 4px 6px -4px rgba(229, 115, 115, 0.3);
}

/* Pfeil-Icon Kreis (via ::after pseudo-element) */
.wp-block-button.is-style-icon-arrow .wp-block-button__link::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    border-radius: 9999px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E57373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.wp-block-button.is-style-icon-arrow .wp-block-button__link:hover::after {
    transform: translateX(0.25rem);
}