.site-inner {
    max-width: 100%;
}

.content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.entry {
    width: 400px;
    margin: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #c7c8ca;
    box-shadow: none;
    transition: box-shadow 0.1s;
}

@media only screen and (max-width: 850px) {
    .content {
        flex-direction: column;
        align-items: center;
    }
    
    .entry {
        width: 100%;
    }
}

.entry:hover {
    box-shadow: 3px 3px 3px #c7c8ca;
}

.entry > *:not(:first-child),
.entry-header > *:not(:first-child) {
    padding: 0px 15px 15px 15px;
    margin: 0px;
}

.entry-header:first-child img {
    margin-bottom: 15px;
}