.cem-menu-wrap,
.cem-menu-wrap * {
    box-sizing: border-box;
}

.cem-menu-wrap {
    width: 100%;
    background: #f8edcf;
    padding: 32px 20px 22px;
}

.cem-menu-grid {
    --cem-columns: 2;
    --cem-column-gap: 22px;
    --cem-row-gap: 22px;
    width: 100%;
    max-width: 995px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(var(--cem-columns), minmax(0, 1fr));
    column-gap: var(--cem-column-gap);
    row-gap: var(--cem-row-gap);
    align-items: stretch;
}

.cem-menu-grid:not(.cem-menu-grid--equal) {
    align-items: start;
}

.cem-menu-grid--equal .cem-menu-card {
    height: 100%;
}

.cem-menu-grid--masonry {
    display: block;
    column-count: var(--cem-columns);
    column-gap: var(--cem-column-gap);
}

.cem-menu-grid--masonry .cem-menu-card {
    display: inline-flex;
    width: 100%;
    height: auto;
    margin-bottom: var(--cem-row-gap);
    break-inside: avoid;
    page-break-inside: avoid;
    vertical-align: top;
}

.cem-menu-card {
    min-height: 320px;
    border: 1px solid rgba(151, 109, 58, 0.32);
    border-radius: 13px;
    background: transparent;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cem-menu-card-header {
    text-align: center;
    flex: 0 0 auto;
}

.cem-menu-title {
    margin: 0;
    color: #8d1733;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
}

.cem-menu-title-divider {
    margin-top: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: #4c2817;
}

.cem-menu-title-divider-svg {
    display: block;
    width: 160px;
    height: 20px;
    max-width: 100%;
    color: currentColor;
    overflow: visible;
}

.cem-menu-title-divider-svg path,
.cem-menu-title-divider-svg circle {
    vector-effect: non-scaling-stroke;
}

.cem-menu-list {
    margin-top: 26px;
    width: 100%;
}

.cem-menu-row {
    min-height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 0 solid rgba(177, 143, 92, 0.22);
    color: #4b1d0e;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

.cem-menu-row:not(:last-child) {
    border-bottom-width: 1px;
}

.cem-menu-name-wrap {
    color: #4b1d0e;
    max-width: 68%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
}

.cem-menu-note {
    color: rgba(75, 29, 14, 0.72);
}

.cem-menu-dots {
    flex: 1 1 auto;
    min-width: 18px;
    margin: 0 10px;
    border-bottom: 1px dotted rgba(107, 75, 43, 0.35);
    transform: translateY(4px);
}

.cem-menu-price {
    min-width: 56px;
    text-align: right;
    white-space: nowrap;
    color: #4b1d0e;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    flex: 0 0 auto;
}

.cem-menu-empty {
    max-width: 995px;
    margin: 0 auto;
    color: #4b1d0e;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 16px;
}

@media (max-width: 767px) {
    .cem-menu-wrap {
        padding: 24px 14px;
    }

    .cem-menu-grid {
        --cem-columns: 1;
        grid-template-columns: 1fr;
        row-gap: 18px;
        --cem-row-gap: 18px;
    }

    .cem-menu-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .cem-menu-title {
        font-size: 22px;
    }

    .cem-menu-title-divider-svg {
        width: 150px;
        height: 18px;
    }

    .cem-menu-list {
        margin-top: 18px;
    }

    .cem-menu-row {
        min-height: 44px;
        font-size: 15px;
    }

    .cem-menu-name-wrap {
        max-width: 62%;
    }

    .cem-menu-dots {
        margin: 0 8px;
        min-width: 12px;
    }

    .cem-menu-price {
        min-width: 52px;
        font-size: 14px;
    }
}
