.angie-anchor-menu-container {
    position: relative;
}

.angie-anchor-menu-771c7eef {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    transition: max-height 0.3s ease;
    align-items: center; /* Ensures separator aligns with text vertically */
}

.angie-anchor-menu-771c7eef li {
    display: block;
}

.angie-anchor-menu-771c7eef a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.angie-menu-separator-wrapper-771c7eef {
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-menu-separator-771c7eef {
    background-color: #ccc;
    /* Default sizes, overridable by controls */
    width: 1px;
    height: 15px;
}


.angie-mobile-toggle-771c7eef {
    display: none;
}

.angie-mobile-toggle-btn-771c7eef {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.angie-mobile-toggle-btn-771c7eef .angie-toggle-icon svg {
    width: 1em;
    height: 1em;
}

/* Tablet Breakpoint (< 1025px) */
@media (max-width: 1024px) {
    .angie-breakpoint-tablet .angie-mobile-toggle-771c7eef {
        display: flex;
    }
    .angie-breakpoint-tablet .angie-anchor-menu-771c7eef {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        background: #fff; /* fallback */
        align-items: stretch;
    }
    .angie-breakpoint-tablet .angie-anchor-menu-771c7eef.active {
        display: flex;
    }
    .angie-breakpoint-tablet .angie-menu-separator-wrapper-771c7eef {
        width: 100%;
        height: 1px; /* Changes vertical separator to horizontal line for mobile dropdown */
    }
    .angie-breakpoint-tablet .angie-menu-separator-771c7eef {
        width: 100% !important;
        height: 1px !important;
    }

}

/* Mobile Breakpoint (< 768px) */
@media (max-width: 767px) {
    .angie-breakpoint-mobile .angie-mobile-toggle-771c7eef {
        display: flex;
    }
    .angie-breakpoint-mobile .angie-anchor-menu-771c7eef {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        background: #fff; /* fallback */
        align-items: stretch;
    }
    .angie-breakpoint-mobile .angie-anchor-menu-771c7eef.active {
        display: flex;
    }
    .angie-breakpoint-mobile .angie-menu-separator-wrapper-771c7eef {
        width: 100%;
        height: 1px; /* Changes vertical separator to horizontal line for mobile dropdown */
    }
    .angie-breakpoint-mobile .angie-menu-separator-771c7eef {
         width: 100% !important;
        height: 1px !important;
    }
}