/* ── Page height layout ───────────────────────────────────── */
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-wrap {
    width: 100%;
    flex: 1;
}





.poster-link {
    display: inline;
    color: var(--green-600);
    font: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    cursor: pointer;
    vertical-align: baseline;
}

.poster-link:hover {
    text-decoration: underline;
}






/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    margin-top: 28px;
    background: var(--green-900);
    color: var(--white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand strong {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--green-400);
}

@media(max-width:600px) {
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}