.ehm-wrapper {
    position: relative;
    --ehm-header-offset: 70px;
}

.ehm-nav {
    width: 100%;
}

.ehm-parents {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ehm-parent-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: #1c1a18;
}

.ehm-parent-link.is-active {
    border-bottom: 0;
    padding-bottom: 0;
}

.ehm-parent-link:hover,
.ehm-parent-link:focus,
.ehm-parent-link:active {
    text-decoration: none;
}

.ehm-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--ehm-header-offset);
    background: #ede7da;
    display: none;
    z-index: 9000;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.ehm-dropdown[aria-hidden="true"] {
    display: none;
}

.ehm-dropdown[aria-hidden="false"] {
    display: block;
}

.ehm-wrapper.is-open .ehm-dropdown {
    display: block;
}

.ehm-dropdown-inner {
    padding: 24px 2.604vw 40px;
    box-sizing: border-box;
}

.ehm-children {
    display: none;
}

.ehm-children.is-active {
    display: block;
}

.ehm-children ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ehm-children li {
    padding-bottom: 18px;
}

.ehm-children a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1c1a18;
}

.ehm-children a:hover,
.ehm-children a:focus,
.ehm-children a:active {
    text-decoration: none;
}

.ehm-empty {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .ehm-parents {
        gap: 14px;
    }

    .ehm-dropdown {
        position: static;
        border-top: 0;
        margin-top: 12px;
    }

    .ehm-dropdown-inner {
        padding: 12px 0 0;
    }

    .ehm-children li {
        padding-bottom: 12px;
    }
}