:root {
    --memory-rail-width: 190px;
    --memory-overview-gold: #bd8649;
    --memory-overview-dark: #111713;
    --memory-overview-paper: #f7f3ed;
}

.memory-overview {
    position: relative;
    padding: clamp(42px, 5vw, 76px) 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(151, 108, 58, .14);
    background:
        radial-gradient(circle at 90% 5%, rgba(189, 134, 73, .1), transparent 25%),
        #eee8df;
}  
   
.memory-overview__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}
 
.memory-overview__head span,
.memory-overview__eyebrow {
    color: #9b6c34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.memory-overview__head h2 {
    margin: 7px 0 0;
    color: #292722;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 43px);
    font-weight: 400;
    line-height: 1.08;
}

.memory-overview__head p {
    max-width: 390px;
    margin: 0;
    color: #79736b;
    font-size: 14px;
    line-height: 1.55;
}

.memory-overview__track {
    padding-bottom: 8px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(189, 134, 73, .42) transparent;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
}

.memory-overview__track::-webkit-scrollbar {
    height: 5px;
}

.memory-overview__track::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(189, 134, 73, .42);
}

.memory-overview__card {
    position: relative;
    flex: 0 0 max(230px, calc((100% - 56px) / 5));
    min-height: 286px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(123, 91, 51, .16);
    border-radius: 20px;
    background: rgba(255, 253, 249, .88);
    box-shadow: 0 18px 45px rgba(57, 45, 31, .07);
    color: #302d28;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.memory-overview__card:hover,
.memory-overview__card:focus-visible {
    color: #302d28;
    border-color: rgba(189, 134, 73, .55);
    box-shadow: 0 24px 55px rgba(57, 45, 31, .13);
    text-decoration: none;
    transform: translateY(-5px);
}

.memory-overview__card:focus-visible {
    outline: 3px solid rgba(189, 134, 73, .25);
    outline-offset: 3px;
}

.memory-overview__number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: rgba(134, 95, 49, .34);
    font-family: Georgia, serif;
    font-size: 13px;
}

.memory-overview__card strong {
    max-width: 90%;
    margin-top: 17px;
    color: #27241f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.memory-overview__text {
    margin-top: 17px;
    display: -webkit-box;
    overflow: hidden;
    color: #706b64;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.memory-overview__action {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #8c622e;
    font-size: 12px;
    font-weight: 700;
}

.memory-overview__action b {
    font-size: 18px;
    font-weight: 400;
    transition: transform .25s ease;
}

.memory-overview__card:hover .memory-overview__action b {
    transform: translateX(4px);
}

.memory-overview__photos {
    height: 100px;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.memory-overview__photos img {
    width: 100%;
    height: 100%;
    min-width: 0;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.memory-overview__card--quote {
    color: #eee7d9;
    border-color: rgba(208, 168, 95, .22);
    background:
        radial-gradient(circle at 85% 10%, rgba(208, 168, 95, .15), transparent 33%),
        linear-gradient(145deg, #252b25, #121713);
}

.memory-overview__card--quote:hover,
.memory-overview__card--quote:focus-visible {
    color: #fff;
}

.memory-overview__card--quote strong,
.memory-overview__card--quote .memory-overview__text {
    color: #f3ede2;
}

.memory-overview__card--quote .memory-overview__eyebrow,
.memory-overview__card--quote .memory-overview__action {
    color: #d7ad65;
}

.memory-overview__card--audio {
    background:
        radial-gradient(circle at 86% 9%, rgba(189, 134, 73, .12), transparent 31%),
        rgba(255, 253, 249, .92);
}

.memory-overview__audio-wave {
    height: 72px;
    margin-top: 20px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(189, 134, 73, .18);
    border-radius: 13px;
    background: rgba(189, 134, 73, .055);
}

.memory-overview__audio-wave i {
    width: 3px;
    height: 18px;
    display: block;
    border-radius: 4px;
    background: linear-gradient(180deg, #d9ad68, #9d682e);
}

.memory-overview__audio-wave i:nth-child(2),
.memory-overview__audio-wave i:nth-child(8) {
    height: 30px;
}

.memory-overview__audio-wave i:nth-child(3),
.memory-overview__audio-wave i:nth-child(7) {
    height: 42px;
}

.memory-overview__audio-wave i:nth-child(4),
.memory-overview__audio-wave i:nth-child(6) {
    height: 54px;
}

.memory-overview__audio-wave i:nth-child(5) {
    height: 34px;
}

.memory-overview__milestones {
    position: relative;
    margin-top: 17px;
    display: grid;
    gap: 12px;
}

.memory-overview__milestones::before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 3px;
    width: 1px;
    background: rgba(189, 134, 73, .32);
}

.memory-overview__milestones span {
    position: relative;
    padding-left: 17px;
    display: block;
    color: #6e6860;
    font-size: 12px;
}

.memory-overview__milestones i {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c18a45;
}

.memory-overview__milestones b {
    font-weight: 500;
}

.memory-overview__hint {
    display: none;
}

.memory-page-nav__brand,
.memory-page-nav__icon {
    display: none;
}

/*
 * Обычная страница памяти: широкая церемониальная карточка без дополнительных
 * декоративных фотографий. Фон построен только градиентами CSS.
 */
body.single-memory:not(.memory-page--svo) .memory-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(18px, 2.2vw, 32px) 0;
    background:
        radial-gradient(circle at 16% 12%, rgba(155, 45, 75, .17), transparent 28%),
        radial-gradient(circle at 83% 76%, rgba(194, 139, 65, .12), transparent 30%),
        linear-gradient(118deg, #171a1c, #080b0d 58%, #131516);
}

body.single-memory:not(.memory-page--svo) .memory-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background:
        linear-gradient(128deg, transparent 0 59%, rgba(255, 255, 255, .035) 60%, transparent 72%),
        radial-gradient(ellipse at 92% 35%, rgba(255, 255, 255, .055), transparent 42%);
}

body.single-memory:not(.memory-page--svo) .memory-hero > .uk-container {
    width: 100%;
    max-width: 1460px;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(18px, 2.2vw, 38px);
    padding-left: clamp(18px, 2.2vw, 38px);
    box-sizing: border-box;
}

body.single-memory:not(.memory-page--svo) .memory-hero__box {
    position: relative;
    grid-template-columns: minmax(380px, 45%) minmax(0, 55%);
    width: 100%;
    min-height: clamp(560px, 67vh, 710px);
    overflow: hidden;
    border: 1px solid rgba(214, 169, 91, .3);
    border-radius: 26px;
    background: #0a0d0f;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .4);
}

body.single-memory:not(.memory-page--svo) .memory-hero__box::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -28%;
    right: -8%;
    width: 68%;
    height: 150%;
    opacity: .34;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 52% 42%, rgba(255, 255, 255, .08), transparent 45%),
        linear-gradient(116deg, transparent 30%, rgba(255, 255, 255, .045) 49%, transparent 67%);
    filter: blur(2px);
    transform: rotate(-8deg);
}

body.single-memory:not(.memory-page--svo) .memory-hero__photo {
    min-height: 560px;
    background: #111315;
}

body.single-memory:not(.memory-page--svo) .memory-hero__photo::after {
    z-index: 3;
    background:
        linear-gradient(90deg, transparent 68%, rgba(8, 11, 13, .56) 88%, #090c0e 100%),
        linear-gradient(180deg, transparent 68%, rgba(4, 6, 7, .3) 100%);
}

body.single-memory:not(.memory-page--svo) .memory-hero__photo > .memory-hero__image {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

body.single-memory:not(.memory-page--svo) .memory-hero__content {
    position: relative;
    z-index: 4;
    align-items: center;
    padding: clamp(42px, 5vw, 78px);
    color: #f6f1e8;
    background-image:
        linear-gradient(90deg, rgba(7, 10, 12, .94) 0%, rgba(7, 10, 12, .82) 52%, rgba(7, 10, 12, .68) 100%),
        url("../images/memory-hero-fabric-v1.webp");
    background-position: center, right center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

body.single-memory:not(.memory-page--svo) .memory-hero__content::before {
    content: "СТРАНИЦА ПАМЯТИ";
    margin-bottom: 18px;
    color: #b98a4b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
}

body.single-memory:not(.memory-page--svo) .memory-hero__title {
    max-width: 880px;
    margin-bottom: 24px;
    color: #fffdf8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 67px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.025em;
    text-wrap: balance;
}

.memory-hero__title-surname,
.memory-hero__title-given {
    display: block;
}

@media (min-width: 768px) {
    .memory-hero__title-given {
        white-space: nowrap;
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__title-given {
        font-size: .84em;
    }
}

body.single-memory:not(.memory-page--svo) .memory-hero__dates {
    width: min(100%, 610px);
    margin-bottom: 32px;
    padding-top: 25px;
    color: #dbae61;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: 400;
    letter-spacing: .025em;
    border-top: 1px solid rgba(205, 158, 82, .38);
}

body.single-memory:not(.memory-page--svo) .memory-hero__age {
    margin-top: 8px;
    display: block;
    color: rgba(244, 239, 230, .72);
    font-size: .68em;
    font-style: italic;
    font-weight: 400;
}

body.single-memory:not(.memory-page--svo) .memory-hero__buttons {
    width: min(100%, 700px);
    grid-template-columns: minmax(260px, 1fr) minmax(180px, .65fr);
    align-items: center;
    gap: 28px;
}

body.single-memory .memory-hero__btn--gold {
    min-height: 56px;
    border: 0 !important;
    border-radius: 999px;
    outline: 0;
    color: #21180b;
    background: linear-gradient(110deg, #f0ce82 0%, #dda94d 56%, #c88c31 100%);
    box-shadow:
        0 14px 32px rgba(189, 132, 42, .24),
        inset 0 1px 0 rgba(255, 255, 255, .48);
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, opacity .25s ease, background-color .25s ease;
}

body.single-memory .memory-hero__btn--gold:hover:not(:disabled),
body.single-memory .memory-hero__btn--gold:focus-visible:not(:disabled) {
    color: #1d1408;
    filter: brightness(1.045);
    transform: translateY(-2px);
    box-shadow:
        0 18px 38px rgba(189, 132, 42, .3),
        inset 0 1px 0 rgba(255, 255, 255, .56);
}

body.single-memory .memory-hero__btn--gold.is-disabled,
body.single-memory .memory-hero__btn--gold:disabled {
    border: 0 !important;
    color: rgba(238, 211, 161, .68) !important;
    background: rgba(203, 157, 82, .12) !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: .62 !important;
    cursor: default;
    transform: none !important;
}

body.single-memory:not(.memory-page--svo) .memory-candle-count {
    margin: 0;
    padding-left: 28px;
    border-left: 1px solid rgba(209, 163, 87, .4);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
}

body.single-memory:not(.memory-page--svo) .memory-candle-count span {
    margin-left: 7px;
    color: #e2b364;
    font-size: 30px;
}

body.single-memory:not(.memory-page--svo) .memory-hero__quote {
    width: min(100%, 650px);
    margin: 36px 0 0;
    box-sizing: border-box;
    padding: clamp(30px, 3vw, 42px) clamp(28px, 3.6vw, 48px) clamp(34px, 3.4vw, 46px) clamp(70px, 6vw, 86px);
    color: rgba(247, 243, 235, .82);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(15px, 1.15vw, 19px);
    font-style: italic;
    line-height: 1.58;
    text-align: left;
}

body.single-memory:not(.memory-page--svo) .memory-hero__quote p {
    margin: 0 0 18px;
}

body.single-memory:not(.memory-page--svo) .memory-hero__quote p:last-child {
    margin-bottom: 0;
}

body.single-memory:not(.memory-page--svo) .memory-hero__quote::after {
    top: clamp(34px, 3.3vw, 46px);
    left: clamp(27px, 3vw, 38px);
}

@media (max-width: 639px) {
    body.single-memory:not(.memory-page--svo) .memory-hero__quote {
        margin-top: 28px;
        padding: 27px 22px 30px 58px;
        line-height: 1.65;
    }
    body.single-memory:not(.memory-page--svo) .memory-hero__quote::after {
        top: 31px;
        left: 21px;
    }
}

@media (min-width: 1200px) {
    body.single-memory {
        padding-left: var(--memory-rail-width);
    }

    body.single-memory .memory-page-nav {
        position: fixed !important;
        z-index: 100000 !important;
        top: 0 !important;
        bottom: 0;
        left: 0;
        width: var(--memory-rail-width);
        padding: 18px 12px !important;
        display: block;
        border: 0 !important;
        border-right: 1px solid rgba(198, 157, 89, .24) !important;
        background: linear-gradient(180deg, #111713, #0a0e0c) !important;
        box-shadow: 14px 0 45px rgba(0, 0, 0, .12) !important;
        animation: none !important;
    }

    .admin-bar.single-memory .memory-page-nav {
        top: 32px !important;
    }

    body.single-memory .memory-page-nav .uk-container {
        width: 100%;
        height: calc(100% - 106px);
        padding: 0;
    }

    body.single-memory .memory-page-nav__controls {
        height: 100%;
    }

    body.single-memory .memory-page-nav__scroll {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(203, 159, 84, .35) transparent;
    }

    body.single-memory .memory-page-nav__scroll::-webkit-scrollbar {
        display: block;
        width: 3px;
    }

    body.single-memory .memory-page-nav__scroll::-webkit-scrollbar-thumb {
        border-radius: 3px;
        background: rgba(203, 159, 84, .35);
    }

    body.single-memory .memory-page-nav__brand {
        height: 94px;
        margin: 0 3px 12px;
        padding: 4px 8px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-bottom: 1px solid rgba(205, 164, 92, .18);
        color: #d6ad66;
        text-decoration: none;
    }

    body.single-memory .memory-page-nav__brand img {
        width: 70px;
        height: 64px;
        display: block;
        object-fit: contain;
        filter: invert(68%) sepia(45%) saturate(645%) hue-rotate(358deg) brightness(94%) contrast(88%);
    }

    body.single-memory .memory-page-nav__brand span {
        color: rgba(240, 222, 187, .72);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: .2em;
        text-transform: uppercase;
    }

    body.single-memory .memory-page-nav__list {
        width: 100%;
        min-width: 0;
        display: grid;
        gap: 5px !important;
    }

    body.single-memory .memory-page-nav__item {
        width: 100%;
    }

    body.single-memory .memory-page-nav__link,
    body.single-memory .memory-page-nav--svo .memory-page-nav__link {
        position: relative;
        width: 100%;
        min-height: 49px !important;
        padding: 7px 9px !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 11px;
        border: 1px solid transparent !important;
        border-radius: 10px !important;
        background: transparent !important;
        color: rgba(245, 240, 230, .68) !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.25;
        letter-spacing: 0 !important;
        text-align: left;
        white-space: normal;
    }

    body.single-memory .memory-page-nav__icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(205, 164, 92, .18);
        border-radius: 9px;
        background: rgba(255, 255, 255, .025);
        color: #c99a50;
        transition: color .25s ease, background-color .25s ease, border-color .25s ease;
    }

    body.single-memory .memory-page-nav__icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    body.single-memory .memory-page-nav__text {
        min-width: 0;
        display: block;
    }

    body.single-memory .memory-page-nav__link::after {
        display: none !important;
    }

    body.single-memory .memory-page-nav__link:hover,
    body.single-memory .memory-page-nav__link:focus,
    body.single-memory .memory-page-nav__link.is-active {
        border-color: rgba(205, 164, 92, .32) !important;
        background: linear-gradient(90deg, rgba(201, 153, 74, .24), rgba(201, 153, 74, .06)) !important;
        color: #fff !important;
        transform: none !important;
    }

    body.single-memory .memory-page-nav__link:hover .memory-page-nav__icon,
    body.single-memory .memory-page-nav__link:focus .memory-page-nav__icon,
    body.single-memory .memory-page-nav__link.is-active .memory-page-nav__icon {
        border-color: rgba(232, 193, 122, .42);
        background: rgba(216, 168, 84, .16);
        color: #efc879;
    }

    body.single-memory .memory-page-nav__arrow {
        display: none !important;
    }

    body.single-memory .memory-anchor-section {
        scroll-margin-top: 26px !important;
    }

    body.single-memory .memory-hero {
        min-height: min(760px, 92vh);
        padding: 30px 0 34px;
        display: flex;
        align-items: center;
        background:
            radial-gradient(circle at 77% 18%, rgba(189, 134, 73, .13), transparent 27%),
            linear-gradient(120deg, #1a1d19, #090c0a);
    }

    body.single-memory .memory-hero__box {
        max-height: none;
        border-color: rgba(213, 171, 92, .25);
        box-shadow: 0 32px 90px rgba(0, 0, 0, .35);
    }
}

@media (min-width: 1200px) and (max-height: 850px) {
    body.single-memory .memory-page-nav__link,
    body.single-memory .memory-page-nav--svo .memory-page-nav__link {
        min-height: 43px !important;
        font-size: 11px !important;
    }

    body.single-memory .memory-page-nav__brand {
        height: 76px;
        margin-bottom: 8px;
    }

    body.single-memory .memory-page-nav__brand img {
        width: 54px;
        height: 48px;
    }

    body.single-memory .memory-page-nav .uk-container {
        height: calc(100% - 84px);
    }
}

@media (max-width: 767px) {
    body.single-memory:not(.memory-page--svo) .memory-hero > .uk-container {
        padding-right: 12px;
        padding-left: 12px;
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__box {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 20px;
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__photo {
        min-height: clamp(390px, 112vw, 570px);
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__photo::after {
        background: linear-gradient(180deg, transparent 66%, #090c0e 100%);
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__content {
        padding: 35px 22px 40px;
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__title {
        font-size: clamp(35px, 11vw, 49px);
    }

    .memory-hero__title-given {
        white-space: normal;
    }

    body.single-memory:not(.memory-page--svo) .memory-hero__buttons {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.single-memory:not(.memory-page--svo) .memory-candle-count {
        padding: 0;
        border-left: 0;
        text-align: center;
    }

    .memory-overview {
        padding: 38px 0 42px;
    }

    .memory-overview .uk-container {
        padding-right: 0;
    }

    .memory-overview__head {
        margin-right: 20px;
        margin-bottom: 20px;
        display: block;
    }

    .memory-overview__head p {
        margin-top: 12px;
    }

    .memory-overview__track {
        padding-right: 20px;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .memory-overview__track::-webkit-scrollbar {
        display: none;
    }

    .memory-overview__card {
        flex: 0 0 min(84vw, 340px);
        min-height: 275px;
        padding: 25px;
        scroll-snap-align: start;
    }

    .memory-overview__hint {
        width: max-content;
        margin: 18px 20px 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-height: 42px;
        padding: 0 16px 0 18px;
        box-sizing: border-box;
        color: #79562e;
        border: 1px solid rgba(178, 126, 63, .3);
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(255, 252, 246, .92), rgba(222, 190, 143, .22));
        box-shadow: 0 9px 24px rgba(91, 65, 36, .1), inset 0 1px rgba(255, 255, 255, .8);
        font-size: 10px;
        font-weight: 750;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

    .memory-overview__hint b {
        display: inline-block;
        color: #ad7536;
        font-size: 20px;
        line-height: 1;
        animation: memoryOverviewSwipeArrow 1.55s ease-in-out infinite;
    }
}

@keyframes memoryOverviewSwipeArrow {
    0%, 100% { opacity: .48; transform: translateX(-3px); }
    50% { opacity: 1; transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
    .memory-overview__card,
    .memory-overview__action b {
        transition: none;
    }
    .memory-overview__hint b {
        animation: none;
    }
}
