* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kumbh Sans", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.card {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.img img {
    display: block;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.article-preview {
    padding: 32px 32px 0;
}

.article-preview h1 {
    font-size: 16px;
    color: #48556a;
    margin-bottom: 12px;
}
.article-preview p {
    font-size: 13px;
    font-weight: 200;
    color: #6e8098;
}

.share {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 22px 32px;
}
.author {
    display: flex;
    flex: 1;
    gap: 12px;
    align-items: center;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}





.author-details p {
    font-size: 13px;
    color: #48556a;
}

.author-details span {
    font-size: 13px;
    color: #9daec2;
}

