* .news {
    box-sizing: border-box;
}

.news {
    --border-radius: 15px;
    --border-radius-avatar: 100%;
    --gap: 0;
    --links-gap: 5px;
    --padding: 15px;
    
    border-radius: var(--border-radius);
    color: #444;
    display: flex;
    flex-wrap: wrap;
    font-size: 10pt;
    gap: var(--gap);
    line-height: 1.5;
}

.news-header {
    width: 100%;
    background: #dbdbdb;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: var(--padding) var(--padding) 25px var(--padding);
}

.news-title {
    font-size: 1.5em;
    padding: 5px var(--padding);
    text-align: center;
    width: 100%;
}

.news-extras {
    align-items: center;
    color: #444;
    display: flex;
    flex-wrap: wrap;
    gap: var(--links-gap);
    justify-content: center;
    width: 100%;
}

.news-extras a {
    background: #444;
    border-radius: var(--border-radius);
    color: #fff;
    display: block;
    padding: 5px var(--padding);
    text-decoration: none;
}

.news-extras a:hover {
    background: #555;
}

.news-image {
    height: 30px;
    width: 30px;
}

.news-image img {
    background: #f0f0f0;
    border-radius: var(--border-radius-avatar);
    display: block;
    height: 100%;
    width: 100%;
}

.news-content {
    background: #f7f7f7;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    flex: 1;
    padding: var(--padding);
}

.news-footer {
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 10%);
    display: flex;
    gap: 5px 15px;
    justify-content: center;
    padding-top: 5px;
    width: 100%;
}

.news-content p:first-child {
    margin-top: 0;
}

.news-content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .news {
        width: 100%;
    }

    .news-extras {
        padding: 0;
    }
}