/* Event Photo Sharing App - SEO landing page.
   Reuses the wedding photo-sharing landing page's visual system (shared .wpsa-*
   components) and adds the event-specific showcase imagery. */
@import url('wedding-photo-sharing-app.css');

/* Showcase banner image directly under the hero */
.epsa-showcase {
    padding: 2.5rem 0 0;
    background: var(--color-white);
}

.epsa-showcase .container {
    max-width: 1100px;
}

.epsa-showcase img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Refined benefits list (this page only): turn the flat checklist into tidy
   chip cards with a filled check badge, so it matches the card-led sections. */
.wpsa-checklist {
    max-width: 940px;
    gap: 1rem;
}

.wpsa-checklist li {
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 1.3rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1.02rem;
    line-height: 1.45;
}

.wpsa-checklist li svg {
    width: 15px;
    height: 15px;
    padding: 5px;
    margin-top: 0;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    box-sizing: content-box;
}

/* Supporting image inside a content section */
.epsa-figure {
    margin: 2.75rem auto 0;
    max-width: 720px;
}

.epsa-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}
