.single-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    padding-top: 2.5rem;
}

.post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90vw;
    max-width: 1000px;
    font-size: calc(.75rem + .5vw);
}

.title-container {
    position: relative;
}

.post-meta {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 100;
    bottom: 1rem;
    left: 2rem;
    transition: opacity .25s;
    max-width: 90vw;
}

.post-meta-categories {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.post-meta a:hover {
    opacity: .8;
}

.post-date {
    font-weight: 600;
    margin: 0;
}

.return-button {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 1rem;
    transition: background-color .25s, color .25s;
    text-decoration: none;
    color: white;
    font-size: calc(.75rem + .5vw);
    margin-top: 2rem;
}

.return-button:hover {
    opacity: .8;
}

.category-main-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-xmark {
    width: calc(.85rem + .85vw);
    height: auto;
}

.category-label-single {
    background-color: var(--primary-color);
    color: white;
}

.cancel-category {
    margin-left: calc(.5rem + .5vw);
    border-radius: 7px;
    width: calc(1.15rem + 1.15vw);
    height: calc(1.15rem + 1.15vw);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
