
.mmgr {
    --mmgr-gap: 18px;
    --mmgr-card-bg: #f6f6f6;
    --mmgr-text: #191919;
    --mmgr-muted: #707070;
    --mmgr-star: #fbbc04;
    position: relative;
    display: block;
    clear: both;
    width: 100vw;
    max-width: none;
    margin: 28px 0 0 calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
    color: var(--mmgr-text) !important;
    font-family: inherit;
    text-align: left;
    isolation: isolate;
}

.mmgr__inner {
    width: min(100% - 32px, 1264px);
    margin: 0 auto;
    padding: 0;
}

.mmgr,
.mmgr * {
    box-sizing: border-box;
}

.mmgr__summary {
    margin: 0 42px 14px;
    color: var(--mmgr-text) !important;
}

.mmgr__summary-link {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--mmgr-text) !important;
    text-decoration: none;
}

.mmgr__summary-title {
    margin-right: 4px;
    font-weight: 700;
}

.mmgr__summary-count {
    color: var(--mmgr-muted) !important;
}

.mmgr__viewport {
    position: relative;
    padding: 0 42px;
}

.mmgr__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (2 * var(--mmgr-gap))) / 3);
    gap: var(--mmgr-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    align-items: stretch;
    overscroll-behavior-inline: contain;
}

.mmgr__track::-webkit-scrollbar {
    display: none;
}

.mmgr__card {
    display: flex;
    min-width: 0;
    min-height: 0;
    padding: 18px;
    flex-direction: column;
    background: var(--mmgr-card-bg);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 4px;
    color: var(--mmgr-text) !important;
    text-align: left !important;
    aspect-ratio: 1.9 / 1;
    scroll-snap-align: start;
}

.mmgr__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.mmgr__author {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: var(--mmgr-text) !important;
    text-decoration: none;
}

.mmgr__author span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mmgr__author strong {
    overflow: hidden;
    color: var(--mmgr-text) !important;
    font-size: 15px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mmgr__author small {
    margin-top: 3px;
    color: var(--mmgr-muted) !important;
    font-size: 13px;
}

.mmgr__avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.mmgr__avatar--fallback {
    display: inline-block;
    background:
        radial-gradient(circle at 50% 38%, #c9c9c9 0 19%, transparent 20%),
        radial-gradient(circle at 50% 90%, #c9c9c9 0 37%, transparent 38%),
        #fff;
}

.mmgr__google {
    color: #5f6368 !important;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.mmgr__stars {
    display: inline-flex;
    gap: 1px;
    color: #c7c7c7 !important;
    line-height: 1;
    letter-spacing: 0;
}

.mmgr__stars span {
    color: #c7c7c7 !important;
}

.mmgr__stars .is-filled {
    color: var(--mmgr-star) !important;
}

.mmgr__card-stars {
    margin: 11px 0 9px;
    align-self: flex-start;
    font-size: 23px;
}

.mmgr__review-text {
    overflow: visible;
    color: var(--mmgr-text) !important;
    line-height: 1.45;
}

.mmgr__review-text p {
    margin: 0;
    color: var(--mmgr-text) !important;
    font-size: 15.5px;
    line-height: 1.45;
    opacity: 1 !important;
}

.mmgr__card-footer {
    margin-top: auto;
    padding-top: 10px;
    font-size: 12px;
}

.mmgr__card-footer a {
    color: var(--mmgr-muted) !important;
    text-decoration: none;
}

.mmgr__card-footer a:hover,
.mmgr__google:hover,
.mmgr__author:hover {
    text-decoration: underline;
}

.mmgr__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 34px;
    height: 54px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #c9c9c9 !important;
    cursor: pointer;
    font: 300 44px/1 Arial, sans-serif;
}

.mmgr__nav:hover,
.mmgr__nav:focus-visible {
    color: #777 !important;
}

.mmgr__nav:disabled {
    opacity: .25;
    cursor: default;
}

.mmgr__nav--prev {
    left: 0;
}

.mmgr__nav--next {
    right: 0;
}

.mmgr__notice {
    margin: 10px 42px 0;
    color: var(--mmgr-muted) !important;
    font-size: 11px;
    text-align: left;
}

.mmgr-empty {
    padding: 12px;
    border-left: 4px solid #d63638;
    background: #fff;
}


@media (max-width: 1050px) and (min-width: 721px) {
    .mmgr__track {
        grid-auto-columns: calc((100% - var(--mmgr-gap)) / 2);
    }

    .mmgr__card {
        aspect-ratio: 1.75 / 1;
    }
}

@media (max-width: 720px) {
    .mmgr__summary {
        margin-right: 0;
        margin-left: 0;
    }

    .mmgr__viewport {
        padding: 0 30px;
    }

    .mmgr__track {
        grid-auto-columns: 100%;
    }

    .mmgr__card {
        min-height: 0;
        padding: 18px;
        aspect-ratio: auto;
    }

    .mmgr__review-text p {
        font-size: 16px;
    }

    .mmgr__nav {
        width: 28px;
    }

    .mmgr__notice {
        margin-right: 30px;
        margin-left: 30px;
    }
}


@media (max-width: 720px) {
    .mmgr {
        margin-top: 22px;
    }

    .mmgr__inner {
        width: min(100% - 20px, 1264px);
    }
}
