

/* =======================
    MEMO DETAILS PAGE
======================= */

#section-details {
    display: flex;
    justify-content: center;
    margin: 3em 0;
}

.memo {
    max-width: 700px;
    width: 100%;

    background: var(--bg-doux);
    border: 1px solid var(--border-soft);
    border-radius: 10px;

    padding: 2em;

    display: flex;
    flex-direction: column;
    gap: 1.5em;

    position: relative;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.memo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TITLE */

.memo-titre h2 {
    font-family: var(--font-Bebas_Neue);
    font-size: 2.2rem;
    line-height: 1.1;
}

/* DESCRIPTION */

.memo-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    word-break: break-word;
}

/* DATES */

.memo-date {
    display: flex;
    justify-content: space-between;
    font-style: italic;
    color: #777;
    font-size: 0.95rem;
}

/* ICON */

.memo .icon-note {
    position: absolute;
    top: 20px;
    right: 20px;
}

.memo .icon-note svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-hover);
}



