/* Wrapper listy */
.acf-contact-widget{
    display: flex;
    /* flex-direction ustawia Elementor (responsywnie) z kontrolki Layout */
}

/* pojedynczy element: ikona + tekst */
.acf-contact-item{
    display: flex;
    gap: 0; /* odstęp ikona-tekst sterowany przez --acf-icon-gap */
}

/* Domyślnie ikona po lewej */
.acf-contact-widget.acf-icon-left .acf-contact-item{
    flex-direction: row;
}

/* Ikona po prawej */
.acf-contact-widget.acf-icon-right .acf-contact-item{
    flex-direction: row-reverse;
}

/* Odstęp ikony zależnie od pozycji */
.acf-contact-widget.acf-icon-left .acf-contact-icon-wrapper,
.acf-contact-widget.acf-icon-left .acf-contact-icon-spacer{
    margin-right: var(--acf-icon-gap, 0px);
    margin-left: 0;
}

.acf-contact-widget.acf-icon-right .acf-contact-icon-wrapper,
.acf-contact-widget.acf-icon-right .acf-contact-icon-spacer{
    margin-left: var(--acf-icon-gap, 0px);
    margin-right: 0;
}

/* tytuł i grupa tekstu */
.acf-contact-widget .acf-contact-title-line{
    display: inline;
}
.acf-contact-widget .acf-contact-text-group{
    display: inline-block;
}

/* ikona */
.acf-contact-icon{
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

/* Kolumna z ikoną */
.acf-contact-icon-wrapper,
.acf-contact-icon-spacer{
    min-width: auto !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Link na ikonie */
.acf-contact-widget .acf-contact-icon-wrapper i,
.acf-contact-widget .acf-contact-icon-link{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

/* stacked/framed */
.acf-contact-stacked .acf-contact-icon-wrapper,
.acf-contact-framed .acf-contact-icon-wrapper{
    cursor: pointer;
    transition: all 0.3s;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.acf-contact-framed .acf-contact-icon-wrapper{
    border-style: solid;
    border-width: 1px;
}

/* shape */
.acf-contact-widget.acf-shape-circle  .acf-contact-icon-wrapper{ border-radius: 50%; }
.acf-contact-widget.acf-shape-rounded .acf-contact-icon-wrapper{ border-radius: 6px; }
.acf-contact-widget.acf-shape-square  .acf-contact-icon-wrapper{ border-radius: 0; }

/* marginesy tekstów */
.acf-contact-text-group > *{
    margin: 2px 0;
}

.acf-beforetitle-block,
.acf-aftertitle-block{
    display: block;
    margin: 5px 0;
}

/* ostatni element bez kombinowania (zostawiam, jeśli gdzieś używasz) */
.acf-contact-item:last-child{
    margin-right: 0 !important;
}