/* Основные стили */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

/* Стили для постов */
.blog-post {
    margin-bottom: 4rem;
}

.blog-post-title {
    margin-bottom: .25rem;
    font-size: 2.5rem;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #727272;
}

.blog-post-content {
    line-height: 1.6;
}

.blog-post-tag {
    color: white;
}

.blog-post-tag:hover {
    background-color: white;
    color: darkgrey;
}

.blog-post-tag > a {
    text-decoration: none;
    color: white;
}


/* Архив */
.archive-year {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Футер */
.footer-nav a {
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.main-title > a {
    text-decoration: none;
}

.main-title > a:hover {
    text-decoration: underline;
}
