#menu-page .container {
    max-width: 800px;
}

.menu-content {
    padding-top: clamp(3rem, 5vw, 6rem);
}

.menu-content.first {
    padding-top: 0;
}

#menu-page h3 {
    color: var(--c-accent);
    margin-bottom: .3em;
    gap: .2em;
}

#menu-page h3 img {
    width: 1em;
}

#menu-page h3 small {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    padding-left: .5em;
}

#menu-page h4 {
    font-size: clamp(1.8rem, 2vw, 2rem);
    width: fit-content;
    margin-bottom: .3rem;
    font-weight: 500;
}

.menu-item {
    background-color: var(--c-accent);
    padding: 2rem 2rem;
}

.menu-item>div:first-child {
    padding-bottom: 2rem;
}

.menu-item.pd-top {
    margin-top: 3rem;
}

.menu-item:has(.effect)>div:first-child {
    padding-bottom: 1rem;
}

.menu-item .effect {
    border-top: 1px dashed var(--c-main);
    padding-top: 1rem;
}

.menu-item span {
    text-decoration: underline;
    text-decoration-thickness: .3em;
    text-underline-offset: -.1em;
    text-decoration-color: #d8c7aa;
}

@media screen and (max-width: 992px) {
    #menu-page h3 small {
        display: block;
        padding-left: 0;
}
}