.content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 1rem 1rem 1rem;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: start;
}
.content > :first-child {
    margin-right: 0.5rem;
}
.content > *:not(:last-child) {
    border: 1px solid rgba(127, 172, 255, 0.15);
    border-radius: 0.5rem;
    padding: 1rem;
}
.content > .body > *:not(:last-child) {
    padding-bottom: 1.25rem;
}
.content .body .header {
    display: flex;
    align-items: center;
}
.content .body .header .image img {
    width: 5rem;
    height: 5rem;
    border-radius: 20%;
    margin-right: 1rem;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}
.content .body .header .title {
    display: flex;
    flex-direction: column;
    height: 5rem;
    justify-content: space-between;
}
.content .body .header .title .header {
    font-size: 1.5rem;
}
.content .body .header .title .footer {
    padding-bottom: 0.25rem;
}
.content .body .header .tags {
    display: flex;
}
.content .body .header .tags .item {
    font-size: 0.75rem;
    border: 1px solid rgba(127, 172, 255, 0.15);
    padding: 0.2rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
    cursor: pointer;
}
.content .body .header .tags .item:hover {
    background: rgba(127, 172, 255, 0.15);
}
.content .body hr {
    border: 0.5px solid rgba(0, 0, 0, 0.15);
}
.content .body .profile {
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-break: break-word;
}
.content .body .buttons .body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}
.content .body .buttons .body .left {
    display: flex;
    align-items: center;
}
.content .body .buttons .body .left .item {
    margin-right: 1rem;
    padding: 0.5rem;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
}
.content .body .buttons .body .left .item:hover {
    cursor: pointer;
    background-color: rgba(24, 42, 76, 0.117);
}
.content .body .buttons .body .right a {
    color: #800000;
    padding: 0.5rem;
}
.content .body .news {
    display: flex;
    flex-direction: column;
}
.content .body .news .item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.content .body .news .item .title {
    text-decoration: none;
    color: #000;
    margin-bottom: 0.25rem;
}
.content .body .news .item .title:hover {
    text-decoration: underline;
}
.content .body .news .item .date {
    font-size: 0.75rem;
}

.content .sidebar > * {
    border: 1px solid rgba(127, 172, 255, 0.15);
    border-radius: 0.5rem;
    padding: 1rem;
}
.content .sidebar {
    display: grid;
    grid-template-rows: auto auto;
    gap: 0.5rem;
}
.content .sidebar .card > *:not(:last-child) {
    margin-bottom: 1rem;
}
.content .sidebar .card {
    display: flex;
    flex-direction: column;
}
.content .sidebar .card .icon {
    display: flex;
    justify-content: center;
}
.content .sidebar .card .icon img {
    width: 50%;
}
.content .sidebar .card .title {
    font-weight: 600;
}
.content .sidebar .card .stats > *:not(:last-child) {
    margin-bottom: 1rem;
}
.content .sidebar .card .stats .item {
    display: flex;
    justify-content: space-between;
}
.content .sidebar .card .stats .item > * {
    width: 49%;
}

@media screen and (max-width: 1000px) {
    .content {
        max-width: 100%;
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        gap: 0.5rem;
    }
    .content .body .header .tags {
        flex-wrap: wrap;
    }
    .content > :first-child {
        margin-right: 0rem;
    }
}
@media screen and (max-width: 768px) {
    .content .body .buttons .body .left .item {
        margin-right: 0.1rem;
        padding: 0.25rem;
    }
    .content .body .header .title {
        height: auto;
    }
}
@media screen and (max-width: 600px) {
    .content .body .buttons .body {
        flex-direction: column-reverse;
        align-items: start;
        gap: 0.5rem;
    }
    .content .body .buttons .body .left {
        width: 100%;
        justify-content: space-between;
    }
    .content .body .buttons .body .left .item {
        margin-right: 1rem;
        padding: 0.5rem;
        text-decoration: none;
        color: #000;
        border-radius: 5px;
    }
    .content .body .buttons .body .left .item:hover {
        cursor: pointer;
        background-color: rgba(24, 42, 76, 0.117);
    }
    .content .body .buttons .body .right {
        width: 100%;
    }
    .content .body .buttons .body .right a {
        display: block;
        color: #800000;
        padding-top: 0.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }
}
