*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 2rem;
}

.quote-container {
    max-width: 860px;
    width: 100%;
}

.quote {
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: normal;
    line-height: 1.5;
    border: none;
    padding: 0;
    text-align: center;
}

.quote p {
    margin: 0;
}

.attribution {
    margin-top: 2rem;
    text-align: center;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #555;
    font-style: normal;
    letter-spacing: 0.03em;
}

.attribution em {
    font-style: italic;
}

/* ── More Wisdom link ─────────────────────────────────────── */

.more-wisdom {
    margin-top: 2.5rem;
    text-align: center;
}

.more-wisdom a {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
    text-decoration: none;
    transition: color 0.15s ease;
}

.more-wisdom a:hover {
    color: #111;
}

/* ── Share bar ────────────────────────────────────────────── */

.share {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    font-size: 0.8rem;
    color: #999;
}

.share-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: #bbb;
    margin-right: 0.25rem;
}

.share-sep {
    color: #ddd;
    user-select: none;
}

.share-link {
    color: #888;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: color 0.15s ease;
}

.share-link:hover {
    color: #111;
}

.share-copy {
    /* reset button styles so it matches the anchor links exactly */
    appearance: none;
    -webkit-appearance: none;
}
