/* ==========================================================================
   memoria-land.html page styles (loaded after /style.css)
   ========================================================================== */

/* Hero icon, slightly larger than the 64px default, rounded like the app */
.ml-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
}

/* Status line stays compact despite the generic page-hero paragraph rule */
.page-hero-content > p.ml-status {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--muted);
}

/* Landscape screenshots inside split sections: framed, never full-bleed */
.ml-shot {
    max-width: 480px;
    margin-inline: auto;
}

/* The one full-width showcase shot directly under the hero */
.ml-showcase {
    max-width: 1024px;
    margin-inline: auto;
}

/* Two framed shots side by side (setup + rewards) */
.ml-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.4vw, 28px);
    align-items: start;
}

@media (max-width: 767px) {
    .ml-duo {
        grid-template-columns: 1fr;
    }
}
