@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Young+Serif&display=swap');

* { box-sizing: border-box; }

img {
    display: block;
    max-inline-size: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-color: hsl(47, 88%, 63%);
    min-block-size: 95vh;
    align-content: center;
}

.card {
    background-color: #fff;
    inline-size: 325px;
    margin-inline: auto;
    padding: 24px;
    border-radius: 16px;
    border: 1.5px solid #000;
    box-shadow: 8px 8px #000;
}

.card-graphic {
    border-radius: 15px;
    justify-self: center;
}

.status {
    display: inline-block;
    background-color: hsl(47, 88%, 63%);
    font-weight: 800;
    font-size: 0.75rem;
    padding-inline: 10px;
    padding-block: 7px;
    border-radius: 5px;
    margin-block-start: 20px;
}

.publish-date {
    font-size: 0.75rem;
    font-weight: 500;
}

h2 {
    font-size: 1.2rem;
    font-weight: 800;

    a {
        color: hsl(0, 0%, 7%);
        text-decoration: none;
    }

    a:hover { color: hsl(47, 88%, 63%); }
}

.preview-summary {
    color: hsl(0, 0%, 42%);
    font-size: 0.8rem;
    font-weight: 500;
    margin-block-end: 24px;
}

.user-link {
    display: flex;
    align-items: center;
}

.profile-pic {
    max-block-size: 2.25rem;
    padding-inline-end: 12px;
}

.attribution {
    margin-block-start: 24px;
    min-block-size: 100%;
    font-size: 11px;
    text-align: center;
}

.attribution a { color: hsl(228, 45%, 44%); }