/* Dual Button Module Styles */

.phast-dual-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Alignment and Container */
.phast-dual-buttons--align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.phast-dual-buttons--align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.phast-dual-buttons--align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
}

.phast-dual-buttons__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
}

/* Core Button Styles */
.phast-dual-buttons__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: 60px;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none !important;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 13px;
    -webkit-transition: color 300ms ease 0ms, background-color 300ms ease 0ms;
    -o-transition: color 300ms ease 0ms, background-color 300ms ease 0ms;
    transition: color 300ms ease 0ms, background-color 300ms ease 0ms;
}

/* Icon Styles - Standard Divi Font Icon */
.phast-dual-buttons__icon {
    font-family: 'ETmodules' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px !important;
}

/* Button 1 - Primary (Teal) */
.phast-dual-buttons__btn--1 {
    background-color: #006271;
    color: #ffffff;
    border-color: #006271;
}

.phast-dual-buttons__btn--1:hover {
    background-color: #ffffff;
    color: #006271;
    border-color: #006271;
}

/* Button 2 - Secondary (Outline) */
.phast-dual-buttons__btn--2 {
    background-color: transparent;
    color: #006271;
    border-color: #006271;
}

.phast-dual-buttons__btn--2:hover {
    background-color: #006271;
    color: #ffffff;
    border-color: #006271;
}

/* Handle Icons in specific positions */
.phast-dual-buttons__btn .phast-dual-buttons__icon {
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 767px) {
    .phast-dual-buttons__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .phast-dual-buttons__btn {
        width: 100%;
        text-align: center;
    }
}